discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5730203d6054198bb10f34f93214bb605b3ea1fd
commit 5730203d6054198bb10f34f93214bb605b3ea1fd Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Sun May 7 13:44:45 2017 +0900 fix fullscreen no blank logic in e's dpms code while this is still the wrong place and has other bugs, this fixes T5464 ... but different things to fix now. @fix --- src/bin/e_dpms.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_dpms.c b/src/bin/e_dpms.c index 718b555..77c7abe 100644 --- a/src/bin/e_dpms.c +++ b/src/bin/e_dpms.c @@ -34,8 +34,8 @@ e_dpms_update(void) enabled = ((e_config->screensaver_enable) && (!e_config->mode.presentation) && - ((!e_util_fullscreen_current_any()) && - (!e_config->no_dpms_on_fullscreen))); + (!((e_util_fullscreen_current_any()) && + (e_config->no_dpms_on_fullscreen)))); if (_e_dpms_enabled != enabled) { _e_dpms_enabled = enabled; --
