diff options
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/options.c b/src/options.c index 33bf623..aadd317 100644 --- a/src/options.c +++ b/src/options.c @@ -213,9 +213,6 @@ print_help(const char *program_name) DEFAULT_DAY_TEMP, DEFAULT_NIGHT_TEMP); fputs("\n", stdout); - - /* TRANSLATORS: help output 7 */ - printf(_("Please report bugs to <%s>\n"), PACKAGE_BUGREPORT); } /* Print list of adjustment methods. */ @@ -575,6 +572,10 @@ parse_config_file_option( return -1; } } + } else if (strcasecmp(key, "preserve-gamma") == 0) { + if (options->preserve_gamma == 1) { + options->preserve_gamma = !!atoi(value); + } } else if (strcasecmp(key, "adjustment-method") == 0) { if (options->method == NULL) { options->method = find_gamma_method( |