fix nocomp_override conditional which would inaccurately toggle nocomp

hooray gcc 5.0
This commit is contained in:
Mike Blumenkrantz 2015-04-14 20:24:48 -04:00
parent 6e1c1d2c58
commit 5dd146e7e4
1 changed files with 1 additions and 1 deletions

View File

@ -501,7 +501,7 @@ nocomp:
evas_object_stack_below(ec->frame, e_comp->nocomp_ec->frame); 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) if (!e_comp->nocomp_delay_timer)
e_comp->nocomp_delay_timer = ecore_timer_add(1.0, _e_comp_cb_nocomp_begin_timeout, NULL); e_comp->nocomp_delay_timer = ecore_timer_add(1.0, _e_comp_cb_nocomp_begin_timeout, NULL);