From 330f30c5e7d93906d2be04070c8260b982cf8938 Mon Sep 17 00:00:00 2001 From: Xjph Date: Sat, 16 Oct 2021 11:59:42 -0230 Subject: [PATCH] fix: string settings not saving --- ObservatoryCore/UI/Views/BasicUIView.axaml.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs index 3a01bfc..410f699 100644 --- a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs +++ b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs @@ -720,7 +720,9 @@ namespace Observatory.UI.Views gridPanel.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(0, GridUnitType.Auto) }); gridPanel.AddControl(expander, nextRow, 0, 3); - foreach (var setting in displayedSettings.Where(s => !System.Attribute.IsDefined(s.Key, typeof(SettingIgnore)))) + var nonIgnoredSettings = displayedSettings.Where(s => !Attribute.IsDefined(s.Key, typeof(SettingIgnore))); + + foreach (var setting in nonIgnoredSettings) { if (setting.Key.PropertyType != typeof(bool) || settingsGrid.Children.Count % 2 == 0) { @@ -756,11 +758,13 @@ namespace Observatory.UI.Views TextBox textBox = new() { Text = stringSetting }; settingsGrid.AddControl(label, settingsGrid.RowDefinitions.Count - 1, 0); settingsGrid.AddControl(textBox, settingsGrid.RowDefinitions.Count - 1, 1); - textBox.TextInput += (object sender, Avalonia.Input.TextInputEventArgs e) => + + textBox.LostFocus += (object sender, RoutedEventArgs e) => { - setting.Key.SetValue(plugin.Settings, e.Text); + setting.Key.SetValue(plugin.Settings, ((TextBox)sender).Text); PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings); }; + break; case int intSetting: // We have two options for integer values: