2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

fix: string settings not saving

This commit is contained in:
Xjph 2021-10-16 11:59:42 -02:30
parent a8ecf72fdf
commit 330f30c5e7

View File

@ -720,7 +720,9 @@ namespace Observatory.UI.Views
gridPanel.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(0, GridUnitType.Auto) }); gridPanel.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(0, GridUnitType.Auto) });
gridPanel.AddControl(expander, nextRow, 0, 3); 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) if (setting.Key.PropertyType != typeof(bool) || settingsGrid.Children.Count % 2 == 0)
{ {
@ -756,11 +758,13 @@ namespace Observatory.UI.Views
TextBox textBox = new() { Text = stringSetting }; TextBox textBox = new() { Text = stringSetting };
settingsGrid.AddControl(label, settingsGrid.RowDefinitions.Count - 1, 0); settingsGrid.AddControl(label, settingsGrid.RowDefinitions.Count - 1, 0);
settingsGrid.AddControl(textBox, settingsGrid.RowDefinitions.Count - 1, 1); 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); PluginManagement.PluginManager.GetInstance.SaveSettings(plugin, plugin.Settings);
}; };
break; break;
case int intSetting: case int intSetting:
// We have two options for integer values: // We have two options for integer values: