From 0df6fb6c2304c036f04a34fc76c49e8f78a6ad37 Mon Sep 17 00:00:00 2001 From: Doyoun Kang Date: Thu, 26 Dec 2019 19:06:44 +0900 Subject: [PATCH] e_policy_wl: skip to handle tizen_position_set of keyboard window we handle the keyboard window's geometry by wl_text_input protocol. Change-Id: I0e5d08269297592e7492d1dd8ae213d655f9e832 --- src/bin/e_policy_wl.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bin/e_policy_wl.c b/src/bin/e_policy_wl.c index 6f2606573f..e2c02b61e0 100644 --- a/src/bin/e_policy_wl.c +++ b/src/bin/e_policy_wl.c @@ -1359,6 +1359,12 @@ _tzpos_iface_cb_set(struct wl_client *client EINA_UNUSED, struct wl_resource *re EINA_SAFETY_ON_NULL_RETURN(ec); EINA_SAFETY_ON_NULL_RETURN(ec->frame); + if (e_policy_client_is_keyboard(ec)) + { + ELOGF("TZPOL", "Keyboard pos set (%d, %d). No operation. return.", ec, x, y); + return; + } + if (!ec->lock_client_location) { if (e_client_pending_geometry_has(ec)) -- 2.34.1