mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 13:33:27 -07:00
Another forgotten change for FEATURE-758, how could this compile?
This commit is contained in:
parent
dfcbb44c6b
commit
3fbbb300e3
1 changed files with 2 additions and 2 deletions
|
@ -369,7 +369,7 @@ namespace Greenshot {
|
|||
numericUpDown_daysbetweencheck.Value = coreConfiguration.UpdateCheckInterval;
|
||||
numericUpDown_daysbetweencheck.Enabled = !coreConfiguration.Values["UpdateCheckInterval"].IsFixed;
|
||||
coreConfiguration.FixIconSize();
|
||||
numericUpdownIconWidth.Value = (coreConfiguration.IconSize.Width /16) * 16;
|
||||
numericUpdownIconSize.Value = (coreConfiguration.IconSize.Width /16) * 16;
|
||||
CheckDestinationSettings();
|
||||
}
|
||||
|
||||
|
@ -414,7 +414,7 @@ namespace Greenshot {
|
|||
coreConfiguration.DWMBackgroundColor = colorButton_window_background.SelectedColor;
|
||||
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();
|
||||
try {
|
||||
if (checkbox_autostartshortcut.Checked) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue