diff options
author | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2016-11-14 15:38:43 +0200 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2016-11-24 16:42:16 +0200 |
commit | 44660c3b9c9ed277d87d4a982edacc0b2e9b7939 (patch) | |
tree | 5d38bd4c3bdfb01d9afccdabda8cbf497bb9e255 /xwayland | |
parent | 7db6c43b5ba03520ef285683a20be457f4a0e4b8 (diff) |
XWM: debug position and size on map request
Helps debugging initial placement problems.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/window-manager.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c index 4a799e35..56d65af8 100644 --- a/xwayland/window-manager.c +++ b/xwayland/window-manager.c @@ -966,8 +966,9 @@ weston_wm_handle_map_request(struct weston_wm *wm, xcb_generic_event_t *event) if (window->frame_id == XCB_WINDOW_NONE) weston_wm_window_create_frame(window); - wm_log("XCB_MAP_REQUEST (window %d, %p, frame %d)\n", - window->id, window, window->frame_id); + wm_log("XCB_MAP_REQUEST (window %d, %p, frame %d, %dx%d @ %d,%d)\n", + window->id, window, window->frame_id, + window->width, window->height, window->x, window->y); weston_wm_window_set_wm_state(window, ICCCM_NORMAL_STATE); weston_wm_window_set_net_wm_state(window); |