mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Added forgotten file, this still belongs to FEATURE-758
This commit is contained in:
parent
680b2baf22
commit
dfcbb44c6b
1 changed files with 2 additions and 0 deletions
|
@ -457,12 +457,14 @@ namespace GreenshotPlugin.Core {
|
|||
if (IconSize.Width > 256) {
|
||||
IconSize.Width = 256;
|
||||
}
|
||||
IconSize.Width = (IconSize.Width / 16) * 16;
|
||||
if (IconSize.Height < 16) {
|
||||
IconSize.Height = 16;
|
||||
}
|
||||
if (IconSize.Height > 256) {
|
||||
IconSize.Height = 256;
|
||||
}
|
||||
IconSize.Height = (IconSize.Height/16)*16;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue