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
This commit is contained in:
Carsten Haitzler 2017-05-07 13:44:45 +09:00 committed by Mike Blumenkrantz
parent 0d7abc11b8
commit 5730203d60
1 changed files with 2 additions and 2 deletions

View File

@ -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;