discomfitor pushed a commit to branch master.

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

commit 5dd146e7e494e5ed11fed52ab393bf79de0b5828
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Tue Apr 14 20:24:48 2015 -0400

    fix nocomp_override conditional which would inaccurately toggle nocomp
    
    hooray gcc 5.0
---
 src/bin/e_comp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index e220ad0..ea37d52 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -501,7 +501,7 @@ nocomp:
                          evas_object_stack_below(ec->frame, 
e_comp->nocomp_ec->frame);
                     }
                }
-             else if ((!e_comp->nocomp) && (!e_comp->nocomp_override > 0))
+             else if ((!e_comp->nocomp) && (!e_comp->nocomp_override))
                {
                   if (!e_comp->nocomp_delay_timer)
                     e_comp->nocomp_delay_timer = ecore_timer_add(1.0, 
_e_comp_cb_nocomp_begin_timeout, NULL);

-- 


Reply via email to