From: Inhong Han Date: Tue, 18 Jun 2024 05:23:44 +0000 (+0900) Subject: Fix issue IME is not shown due to its being iconified X-Git-Tag: accepted/tizen/unified/20240618.195752~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03ddd2bc9b32b3691ea140bbbce6e1af80119edf;p=platform%2Fcore%2Fuifw%2Fe-mod-tizen-wl-textinput.git Fix issue IME is not shown due to its being iconified Change-Id: I9931b14a40f3d431c2f50b7b1aecb33918365187 --- diff --git a/src/e_mod_input_panel.c b/src/e_mod_input_panel.c index 4681341..a4a1449 100644 --- a/src/e_mod_input_panel.c +++ b/src/e_mod_input_panel.c @@ -712,6 +712,10 @@ _ips_show(E_Client *ec) _e_input_panel_position_set(ec, ec->client.w, ec->client.h); ec->visible = EINA_TRUE; + + if (ec->iconic) + e_client_uniconify(ec); + evas_object_geometry_set(ec->frame, ec->x, ec->y, ec->w, ec->h); evas_object_show(ec->frame); e_comp_object_damage(ec->frame, 0, 0, ec->w, ec->h);