From: Juyeon Lee Date: Tue, 10 Oct 2017 11:54:51 +0000 (+0900) Subject: e_mod_effect: add skip condition to get background client list X-Git-Tag: accepted/tizen/5.0/unified/20181102.022839~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=76ae3a693c648744d3173702abc00e62cc82a9b2;p=platform%2Fcore%2Fuifw%2Fe-mod-tizen-effect.git e_mod_effect: add skip condition to get background client list Change-Id: Ibc1b4c0463b4686f18ba776cbedabeed52dcda9b --- diff --git a/src/e_mod_effect.c b/src/e_mod_effect.c index 6b1bae6..b70982b 100644 --- a/src/e_mod_effect.c +++ b/src/e_mod_effect.c @@ -496,6 +496,11 @@ _eff_object_background_below_clients_get(E_Client *ec, E_Effect_Type type, Eina_ return; } + if (e_object_is_del(E_OBJECT(below))) continue; + if (ec->zone != below->zone) continue; + if (e_client_util_ignored_get(below) || + (!evas_object_visible_get(below->frame))) continue; + if (below->vkbd.vkbd) continue;