In 8-bit mode, when using a 1-bit mask, set the mask so only wholly transparent pixels are not plotted by default.

This is considered "more correct" than setting an arbitrary value when full alpha is not possible.
This commit is contained in:
Chris Young 2016-05-22 16:11:01 +01:00
parent 8c00da9ec6
commit 93be8d805e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ NSOPTION_BOOL(download_notify, true)
NSOPTION_BOOL(faster_scroll, true)
NSOPTION_BOOL(scale_quality, false)
NSOPTION_INTEGER(dither_quality, 0)
NSOPTION_INTEGER(mask_alpha, 50)
NSOPTION_INTEGER(mask_alpha, 0)
NSOPTION_BOOL(ask_overwrite, true)
NSOPTION_INTEGER(printer_unit, 0)
NSOPTION_INTEGER(print_scale, 100)