Fix clamping on screen blanker timeout

commit f43d2b881c
added the ability to set screen blanker timeouts as low as 6 seconds,
but E still clamped to 30 seconds when loading config.
This commit is contained in:
Derek Foreman 2017-07-14 11:10:06 -05:00
parent f43d2b881c
commit 98f4336fcd
1 changed files with 1 additions and 1 deletions

View File

@ -1627,7 +1627,7 @@ e_config_load(void)
E_CONFIG_LIMIT(e_config->backlight.timer, 1, 3600);
E_CONFIG_LIMIT(e_config->screensaver_timeout, 30, 5400);
E_CONFIG_LIMIT(e_config->screensaver_timeout, 6, 5400);
E_CONFIG_LIMIT(e_config->screensaver_interval, 0, 5400);
E_CONFIG_LIMIT(e_config->screensaver_blanking, 0, 2);
E_CONFIG_LIMIT(e_config->screensaver_expose, 0, 2);