diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-04-11 09:26:34 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-04-11 09:26:34 +0100 |
commit | bba1809eac7eda21842fef1aab8723d9bfb56c8f (patch) | |
tree | 0ae79f9e42ddc9d3a0f8eb67be8b853b74492d0b /resize.c | |
parent | 73b54a0e5fa14736d1b7fbac997dd5b12c6940fb (diff) | |
download | rtmux-bba1809eac7eda21842fef1aab8723d9bfb56c8f.tar.gz rtmux-bba1809eac7eda21842fef1aab8723d9bfb56c8f.tar.bz2 rtmux-bba1809eac7eda21842fef1aab8723d9bfb56c8f.zip |
Merge a number of fixes from master for layouts, mostly prompted by testing by
Thomas Sattler.
Diffstat (limited to 'resize.c')
-rw-r--r-- | resize.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -51,6 +51,8 @@ resize_window(struct window *w, u_int sx, u_int sy) if (sy < w->layout_root->sy) sy = w->layout_root->sy; window_resize(w, sx, sy); + log_debug("%s: @%u resized to %u,%u; layout %u,%u", __func__, w->id, + sx, sy, w->layout_root->sx, w->layout_root->sy); /* Restore the window zoom state. */ if (zoomed) |