diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-30 23:02:27 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-30 23:02:27 +0100 |
commit | 41b8bb4eef44260729d8cfd649be4e3a8ed74015 (patch) | |
tree | 4fda420f3c24a535cd2432f0e61e4983c01a4545 /window.c | |
parent | 200a1c62c6fe29d16f45306f5fa2e48ad7772a23 (diff) | |
parent | b26523c26dc7cf0a24a1adb787aa1816deb40693 (diff) | |
download | rtmux-41b8bb4eef44260729d8cfd649be4e3a8ed74015.tar.gz rtmux-41b8bb4eef44260729d8cfd649be4e3a8ed74015.tar.bz2 rtmux-41b8bb4eef44260729d8cfd649be4e3a8ed74015.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1137,7 +1137,7 @@ window_pane_reset_mode(struct window_pane *wp) } else { log_debug("%s: next mode is %s", __func__, next->mode->name); wp->screen = next->screen; - if (next != NULL && next->mode->resize != NULL) + if (next->mode->resize != NULL) next->mode->resize(next, wp->sx, wp->sy); } wp->flags |= (PANE_REDRAW|PANE_CHANGED); |