From: Doyoun Kang Date: Thu, 26 Dec 2019 05:21:10 +0000 (+0900) Subject: e_mod_input_panel: add log for size and position X-Git-Tag: submit/tizen_5.5/20200120.053150~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e841b7c9305b2ce4e7e3320007dce4da31992ce0;p=platform%2Fcore%2Fuifw%2Fe-mod-tizen-wl-textinput.git e_mod_input_panel: add log for size and position Change-Id: I629fd9ffa9497fe7f5fcfd9cf6b16eac463843d5 --- diff --git a/src/e_mod_input_panel.c b/src/e_mod_input_panel.c index e3f3a71..497c3f3 100644 --- a/src/e_mod_input_panel.c +++ b/src/e_mod_input_panel.c @@ -626,6 +626,7 @@ _e_input_panel_position_set(E_Client *ec, int w, int h) _e_input_panel_convert_floating_position(ec, sx, sy, &nx, &ny, E_INPUT_PANEL_COORDINATE_TYPE_LOGICAL); } + LOGD("pos: %d, %d", nx, ny); e_client_util_move_without_frame(ec, nx, ny); } @@ -886,7 +887,7 @@ _e_ips_cb_evas_resize(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *e evas_object_geometry_get(obj, NULL, NULL, &w, &h); - LOGD("current angle : %d", ec->e.state.rot.ang.curr); + LOGD("current angle : %d, size (%d, %d)", ec->e.state.rot.ang.curr, w, h); _e_input_panel_position_set(ec, w, h); ips = _e_input_panel_surface_get(ec);