Another forgotten change for FEATURE-758, how could this compile?

This commit is contained in:
RKrom 2014-11-08 23:07:32 +01:00
commit 3fbbb300e3

View file

@ -369,7 +369,7 @@ namespace Greenshot {
numericUpDown_daysbetweencheck.Value = coreConfiguration.UpdateCheckInterval; numericUpDown_daysbetweencheck.Value = coreConfiguration.UpdateCheckInterval;
numericUpDown_daysbetweencheck.Enabled = !coreConfiguration.Values["UpdateCheckInterval"].IsFixed; numericUpDown_daysbetweencheck.Enabled = !coreConfiguration.Values["UpdateCheckInterval"].IsFixed;
coreConfiguration.FixIconSize(); coreConfiguration.FixIconSize();
numericUpdownIconWidth.Value = (coreConfiguration.IconSize.Width /16) * 16; numericUpdownIconSize.Value = (coreConfiguration.IconSize.Width /16) * 16;
CheckDestinationSettings(); CheckDestinationSettings();
} }
@ -414,7 +414,7 @@ namespace Greenshot {
coreConfiguration.DWMBackgroundColor = colorButton_window_background.SelectedColor; coreConfiguration.DWMBackgroundColor = colorButton_window_background.SelectedColor;
coreConfiguration.UpdateCheckInterval = (int)numericUpDown_daysbetweencheck.Value; coreConfiguration.UpdateCheckInterval = (int)numericUpDown_daysbetweencheck.Value;
coreConfiguration.IconSize = new Size((int)numericUpdownIconWidth.Value, (int)numericUpdownIconWidth.Value); coreConfiguration.IconSize = new Size((int)numericUpdownIconSize.Value, (int)numericUpdownIconSize.Value);
coreConfiguration.FixIconSize(); coreConfiguration.FixIconSize();
try { try {
if (checkbox_autostartshortcut.Checked) { if (checkbox_autostartshortcut.Checked) {