From dfcbb44c6b8d7b2526fea347a090b468613be1cb Mon Sep 17 00:00:00 2001 From: RKrom Date: Sat, 8 Nov 2014 23:04:27 +0100 Subject: [PATCH] Added forgotten file, this still belongs to FEATURE-758 --- GreenshotPlugin/Core/CoreConfiguration.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GreenshotPlugin/Core/CoreConfiguration.cs b/GreenshotPlugin/Core/CoreConfiguration.cs index 22039e2d5..c5e911712 100644 --- a/GreenshotPlugin/Core/CoreConfiguration.cs +++ b/GreenshotPlugin/Core/CoreConfiguration.cs @@ -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; } }