mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 13:33:27 -07:00
#258 In the settings form there was DPI scaling done on the icon size, this seems to have unfortunate side effects, so I removed this.
This commit is contained in:
parent
fa0ed4a53b
commit
2330d6af57
1 changed files with 1 additions and 2 deletions
|
@ -533,8 +533,7 @@ namespace Greenshot.Forms
|
||||||
|
|
||||||
numericUpDown_daysbetweencheck.Value = coreConfiguration.UpdateCheckInterval;
|
numericUpDown_daysbetweencheck.Value = coreConfiguration.UpdateCheckInterval;
|
||||||
numericUpDown_daysbetweencheck.Enabled = !coreConfiguration.Values["UpdateCheckInterval"].IsFixed;
|
numericUpDown_daysbetweencheck.Enabled = !coreConfiguration.Values["UpdateCheckInterval"].IsFixed;
|
||||||
var scaledIconSize = DpiHelper.ScaleWithDpi(coreConfiguration.IconSize, DpiHelper.GetDpi(Handle));
|
numericUpdownIconSize.Value = coreConfiguration.IconSize.Width;
|
||||||
numericUpdownIconSize.Value = scaledIconSize.Width / 16 * 16;
|
|
||||||
CheckDestinationSettings();
|
CheckDestinationSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue