diff options
author | Thomas Adam <thomas.adam@smoothwall.net> | 2013-02-07 12:08:55 +0000 |
---|---|---|
committer | Thomas Adam <thomas.adam@smoothwall.net> | 2013-02-07 12:08:55 +0000 |
commit | 64da762c15ddf0930baa1f8e4fc2b41515a64e3a (patch) | |
tree | cd2a953395962c7f2e7265d16722508a80606372 /window-copy.c | |
parent | fe00607816308953209cb85ab92a586c1f344cde (diff) | |
parent | 8903c1f167839569b7514508b38988aa6486575c (diff) | |
download | rtmux-64da762c15ddf0930baa1f8e4fc2b41515a64e3a.tar.gz rtmux-64da762c15ddf0930baa1f8e4fc2b41515a64e3a.tar.bz2 rtmux-64da762c15ddf0930baa1f8e4fc2b41515a64e3a.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window-copy.c')
-rw-r--r-- | window-copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/window-copy.c b/window-copy.c index f6abcb9d..c319aba6 100644 --- a/window-copy.c +++ b/window-copy.c @@ -335,9 +335,9 @@ window_copy_resize(struct window_pane *wp, u_int sx, u_int sy) struct screen *s = &data->screen; struct screen_write_ctx ctx; - screen_resize(s, sx, sy); + screen_resize(s, sx, sy, 0); if (data->backing != &wp->base) - screen_resize(data->backing, sx, sy); + screen_resize(data->backing, sx, sy, 0); if (data->cy > sy - 1) data->cy = sy - 1; |