raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=f6a92a5753886be31d6c6cb4ebdbe18f1234b8e9

commit f6a92a5753886be31d6c6cb4ebdbe18f1234b8e9
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 3e996f9..9bda36c 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;

-- 


Reply via email to