diff options
author | Matt Stobo <mwstobo@gmail.com> | 2017-10-30 19:30:10 -0400 |
---|---|---|
committer | Matt Stobo <mwstobo@gmail.com> | 2017-10-30 19:38:41 -0400 |
commit | a4d89c7d6b9a0334d04c819fc06f0dd7b54dc374 (patch) | |
tree | 7da96d50a6412ff47e560c19e99ae8990583d487 /src/redshift.c | |
parent | Merge pull request #542 from jonls/options-refactor (diff) | |
download | redshift-ng-a4d89c7d6b9a0334d04c819fc06f0dd7b54dc374.tar.gz redshift-ng-a4d89c7d6b9a0334d04c819fc06f0dd7b54dc374.tar.bz2 redshift-ng-a4d89c7d6b9a0334d04c819fc06f0dd7b54dc374.tar.xz |
Fix #335: Set period to none when disabled
This allows for hooks to be run when redshift is disabled
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/redshift.c b/src/redshift.c index f4c2d65..e0221d5 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -723,6 +723,7 @@ run_continual_mode(const location_provider_t *provider, scheme, transition_prog, &target_interp); if (disabled) { + period = PERIOD_NONE; color_setting_reset(&target_interp); } |