discomfitor pushed a commit to branch enlightenment-0.19.

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

commit 5f5786ab5060522becaf28bab148ecd11fbb988f
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 4a9eae4..5bc57b9 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -503,7 +503,7 @@ nocomp:
                          evas_object_stack_below(ec->frame, 
c->nocomp_ec->frame);
                     }
                }
-             else if ((!c->nocomp) && (!c->nocomp_override > 0))
+             else if ((!c->nocomp) && (!c->nocomp_override))
                {
                   if (!c->nocomp_delay_timer)
                     c->nocomp_delay_timer = ecore_timer_add(1.0, 
_e_comp_cb_nocomp_begin_timeout, c);

-- 


Reply via email to