From 097e0c175b0af76d0a1494f8547878a360b3719f Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Tue, 9 Jun 2026 08:23:09 +0200 Subject: [PATCH] [feat:] refresh wiki nav tree manually (and file/folder-add icons) --- MainWindow.axaml | 21 +++++++++++++++++---- MainWindow.axaml.cs | 5 +++++ 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/MainWindow.axaml b/MainWindow.axaml index e9cabf9..86443cb 100644 --- a/MainWindow.axaml +++ b/MainWindow.axaml @@ -346,10 +346,23 @@ - + + diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 10d3408..2440d25 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -1302,4 +1302,9 @@ public partial class MainWindow : Window { Global.Save(); } + + private void BtnReloadWiki_OnClick(object? sender, RoutedEventArgs e) + { + PopulateNavTree(); + } }