From: Doyoun Kang Date: Tue, 12 Mar 2024 00:10:41 +0000 (+0900) Subject: Add code to check whether the ec is same to ips->ec in effect_end callback X-Git-Tag: accepted/tizen/7.0/unified/20240313.111108~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe48d83ea36f1a538eb1b97fffcbba34df8b84c5;p=platform%2Fcore%2Fuifw%2Fe-mod-tizen-wl-textinput.git Add code to check whether the ec is same to ips->ec in effect_end callback Change-Id: I49ca0759b587efb027bd6a8dc863757265eb51d6 --- diff --git a/src/e_mod_input_panel.c b/src/e_mod_input_panel.c index e5bdad6..82dc505 100644 --- a/src/e_mod_input_panel.c +++ b/src/e_mod_input_panel.c @@ -875,6 +875,7 @@ _e_input_panel_effect_end(void *data, E_Client *ec) { E_Input_Panel_Surface *ips = data; if (!ips) return EINA_TRUE; + if (ips->ec != ec) return EINA_TRUE; LOGI("Effect end IPS's ec. ips:%p, ips->ec:%p", ips, ips->ec);