From 9a75cdb819364738721395a030531109c5dfe22b Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 12 May 2014 15:44:34 +0200 Subject: [PATCH] Fix for minimum OutputFileReduceColorsTo value --- GreenshotPlugin/Core/CoreConfiguration.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GreenshotPlugin/Core/CoreConfiguration.cs b/GreenshotPlugin/Core/CoreConfiguration.cs index 8997ac7cf..87e3e539d 100644 --- a/GreenshotPlugin/Core/CoreConfiguration.cs +++ b/GreenshotPlugin/Core/CoreConfiguration.cs @@ -413,8 +413,8 @@ namespace GreenshotPlugin.Core { if (AutoCropDifference > 255) { AutoCropDifference = 255; } - if (OutputFileReduceColorsTo < 0) { - OutputFileReduceColorsTo = 0; + if (OutputFileReduceColorsTo < 2) { + OutputFileReduceColorsTo = 2; } if (OutputFileReduceColorsTo > 256) { OutputFileReduceColorsTo = 256;