diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-02-19 13:29:59 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-02-19 13:29:59 +0000 |
commit | 6adf5615075944e87b2a988d5507cca5d9151826 (patch) | |
tree | 134217173fcfd23c37424d4a2a69803e8c366241 | |
parent | 95adc0e6bacb32108fd6557e2e5ddeaaaa4fd58e (diff) | |
download | rtmux-6adf5615075944e87b2a988d5507cca5d9151826.tar.gz rtmux-6adf5615075944e87b2a988d5507cca5d9151826.tar.bz2 rtmux-6adf5615075944e87b2a988d5507cca5d9151826.zip |
Redraw status on mode entry and exit.
-rw-r--r-- | window.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1100,6 +1100,8 @@ window_pane_set_mode(struct window_pane *wp, const struct window_mode *mode) if ((s = wp->mode->init(wp)) != NULL) wp->screen = s; wp->flags |= (PANE_REDRAW|PANE_CHANGED); + + server_status_window(wp->window); return (0); } @@ -1114,6 +1116,8 @@ window_pane_reset_mode(struct window_pane *wp) wp->screen = &wp->base; wp->flags |= (PANE_REDRAW|PANE_CHANGED); + + server_status_window(wp->window); } void |