mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 18:57:28 -07:00
Fix for minimum OutputFileReduceColorsTo value
This commit is contained in:
parent
8a88f9917b
commit
9a75cdb819
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue