e_mod_input_panel: add log for keyboard geometry 78/220978/2
authorDoyoun Kang <doyoun.kang@samsung.com>
Thu, 26 Dec 2019 06:27:50 +0000 (15:27 +0900)
committerDoyoun Kang <doyoun.kang@samsung.com>
Thu, 26 Dec 2019 06:44:06 +0000 (15:44 +0900)
Change-Id: Ib1902077ed1c375ae0c00a5acc218e7dd6714053

src/e_mod_input_panel.c

index 497c3f37d826fad11f9760fb1c0e6e7d9317babe..0bdc6dc16e93148036767b2152fa63440e407318 100644 (file)
@@ -626,7 +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);
+   LOGD("angle:%d, pos: %d, %d", ec->e.state.rot.ang.curr, nx, ny);
    e_client_util_move_without_frame(ec, nx, ny);
 }
 
@@ -1014,7 +1014,8 @@ _e_input_panel_rotation_geometry_set(void *data, E_Client *ec)
    if ((w != ec->e.state.rot.geom[i].w) ||
        (h != ec->e.state.rot.geom[i].h))
      {
-        LOGD("Resizing by Rotation Geometry. Pending Drawing...");
+        LOGD("Resizing by Rotation Geometry. Pending Drawing... cur_size(%d,%d), rot(angle:%d, size:%d,%d)",
+             w, h, cur_angle, ec->e.state.rot.geom[i].w, ec->e.state.rot.geom[i].h);
         _e_input_panel_stop_drawing(ips);
      }
 }