Merge pull request #5031 from andrethomas/patch-1

Disable sleep 0 for scheme 0
This commit is contained in:
Theo Arends 2019-01-27 11:25:41 +01:00 committed by GitHub
commit f8350d65c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -756,7 +756,7 @@ void LightAnimate(void)
} }
} }
else { else {
sleep = 0; sleep = (LS_POWER == Settings.light_scheme) ? Settings.sleep : 0; // If no animation then use sleep as is
switch (Settings.light_scheme) { switch (Settings.light_scheme) {
case LS_POWER: case LS_POWER:
LightSetDimmer(Settings.light_dimmer); LightSetDimmer(Settings.light_dimmer);