Add more information in resize callback 09/286509/2
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 9 Jan 2023 06:06:13 +0000 (15:06 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 27 Oct 2023 00:30:14 +0000 (00:30 +0000)
Change-Id: I4257ccf446cc51d5bb8d9aa64fa09b357e45abcd
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/e_mod_input_panel.c

index c43ae4d..dee2590 100644 (file)
@@ -818,7 +818,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);
 
-   LOGI("current angle : %d", ec->e.state.rot.ang.curr);
+   LOGI("current angle : %d, w: %d, h: %d", ec->e.state.rot.ang.curr, w, h);
    _e_input_panel_position_set(ec, w, h);
 
    ips = _e_input_panel_surface_get(ec);
@@ -950,8 +950,8 @@ _e_input_panel_rotation_geometry_set(void *data, E_Client *ec)
      return;
 
    evas_object_geometry_get(ec->frame, NULL, NULL, &w, &h);
-
    cur_angle = ec->e.state.rot.ang.curr;
+   LOGI("current angle : %d, w: %d, h: %d", cur_angle, w, h);
 
    if (!check_rotation_size(ec, cur_angle, w, h) && (e_text_input_activation_state_get() || ips->showing))
      {