mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Added a check for the color reduceto as was requested in feature-request 712.
This commit is contained in:
parent
7f72e7a3d7
commit
92dd76584d
1 changed files with 6 additions and 0 deletions
|
@ -413,6 +413,12 @@ namespace GreenshotPlugin.Core {
|
|||
if (AutoCropDifference > 255) {
|
||||
AutoCropDifference = 255;
|
||||
}
|
||||
if (OutputFileReduceColorsTo < 0) {
|
||||
OutputFileReduceColorsTo = 0;
|
||||
}
|
||||
if (OutputFileReduceColorsTo > 256) {
|
||||
OutputFileReduceColorsTo = 256;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue