diff --git a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs index 410f699..6ec24b0 100644 --- a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs +++ b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs @@ -667,8 +667,15 @@ namespace Observatory.UI.Views Properties.Core.Default.Save(); } }); - - + }; + + journalPath.LostFocus += (object sender, RoutedEventArgs e) => + { + if (System.IO.Directory.Exists(journalPath.Text)) + { + Properties.Core.Default.JournalFolder = journalPath.Text; + Properties.Core.Default.Save(); + } }; @@ -858,6 +865,23 @@ namespace Observatory.UI.Views }; + settingPath.LostFocus += (object sender, RoutedEventArgs e) => + { + string fullPath; + + try + { + fullPath = System.IO.Path.GetFullPath(settingPath.Text); + } + catch + { + fullPath = string.Empty; + } + + setting.Key.SetValue(plugin.Settings, new System.IO.FileInfo(fullPath)); + PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings); + }; + StackPanel stackPanel = new() { Orientation = Avalonia.Layout.Orientation.Horizontal }; stackPanel.Children.Add(label); stackPanel.Children.Add(settingPath);