summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2021-04-21 09:47:03 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2021-04-21 09:47:03 +0100
commitcd6af4a52ef074754e25d5658f04c78f8353114e (patch)
treecb5c79539e45cb8368d6f3f7269ff2c73e066880 /window.c
parent8363c6af2e71cd99e6574e82f80bdb66973f0bd3 (diff)
Include current client in size calcultion for new sessions, GitHub issue 2662.
Diffstat (limited to 'window.c')
-rw-r--r--window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/window.c b/window.c
index 38c1913c..d8cff590 100644
--- a/window.c
+++ b/window.c
@@ -329,6 +329,8 @@ window_create(u_int sx, u_int sy, u_int xpixel, u_int ypixel)
window_update_activity(w);
+ log_debug("%s: @%u create %ux%u (%ux%u)", __func__, w->id, sx, sy,
+ w->xpixel, w->ypixel);
return (w);
}