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

[Core] Fix: Convert Decimal control values to int32 for Int settings (#134)

Attempting to set decimal values to int properties tends to throw errors. ;-)
This commit is contained in:
F K 2024-01-24 08:51:46 -05:00 committed by GitHub
parent 4299b0613b
commit 5e8ac004c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -246,7 +246,7 @@ namespace Observatory.UI
trackBar.ValueChanged += (sender, e) =>
{
setting.SetValue(_plugin.Settings, trackBar.Value);
setting.SetValue(_plugin.Settings, Convert.ToInt32(trackBar.Value));
SaveSettings();
};
@ -268,7 +268,7 @@ namespace Observatory.UI
numericUpDown.ValueChanged += (sender, e) =>
{
setting.SetValue(_plugin.Settings, numericUpDown.Value);
setting.SetValue(_plugin.Settings, Convert.ToInt32(numericUpDown.Value));
SaveSettings();
};