diff options
Diffstat (limited to '')
-rw-r--r-- | redshift/redshift.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/redshift/redshift.c b/redshift/redshift.c index 5bc172e..3086a83 100644 --- a/redshift/redshift.c +++ b/redshift/redshift.c @@ -312,6 +312,7 @@ run_continual_mode(void) if (disable && !done) { disabled ^= 1; disable = 0; + /* TODO if `!disabled`, reload gamma ramps and store as saved gamma ramps */ } if (exiting) { disabled = 1; @@ -412,9 +413,9 @@ run_continual_mode(void) break; /* Adjust temperature and sleep */ - if (method->apply(method_state, &colour, preserve_gamma) < 0) + if (method->apply(method_state, &colour, preserve_gamma) < 0) /* TODO (optionlly) only if colour changed */ eprintf(_("Temperature adjustment failed.")); - delay = fade_length ? SLEEP_DURATION_SHORT : SLEEP_DURATION; + delay = fade_length ? SLEEP_DURATION_SHORT : SLEEP_DURATION /* TODO (optionally) try to be more smart */; #ifndef WINDOWS location_fd = scheme.type == SOLAR_SCHEME ? provider->get_fd(provider_state) : -1; if (location_fd >= 0) |