From da895a24dd3862622d831d37d38874328810423e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 15 Jun 2015 16:59:48 -0400 Subject: [PATCH] only play visibility effects for allowed clients --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 52884136b..f7af78ace 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -712,7 +712,7 @@ _e_comp_object_effect_visibility_start(E_Comp_Object *cw, Eina_Bool state) { int x, y; - if (!cw->visibility_effect) return EINA_TRUE;; + if ((!cw->visibility_effect) || (!e_comp_object_effect_allowed_get(cw->smart_obj))) return EINA_TRUE;; _e_comp_object_animating_begin(cw); e_comp_object_effect_stop(cw->smart_obj, _e_comp_object_done_defer); if (!e_comp_object_effect_set(cw->smart_obj, cw->visibility_effect))