diff options
author | nicm <nicm> | 2021-08-12 19:47:05 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-08-12 19:47:05 +0000 |
commit | 9b004728202d03241009ef5f73980909e9234bc4 (patch) | |
tree | 6492c6e6a97837a1e8cc66d910303177598850e6 /cmd-select-pane.c | |
parent | 5d451551b6457d972897fa60b3dba38e13d6589f (diff) | |
download | rtmux-9b004728202d03241009ef5f73980909e9234bc4.tar.gz rtmux-9b004728202d03241009ef5f73980909e9234bc4.tar.bz2 rtmux-9b004728202d03241009ef5f73980909e9234bc4.zip |
Evaluate styles with the pane variables.
Diffstat (limited to 'cmd-select-pane.c')
-rw-r--r-- | cmd-select-pane.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd-select-pane.c b/cmd-select-pane.c index 7871fe05..c5b4ee13 100644 --- a/cmd-select-pane.c +++ b/cmd-select-pane.c @@ -145,10 +145,12 @@ cmd_select_pane_exec(struct cmd *self, struct cmdq_item *item) markedwp = marked_pane.wp; if (lastwp != NULL) { + lastwp->flags |= (PANE_REDRAW|PANE_STYLECHANGED); server_redraw_window_borders(lastwp->window); server_status_window(lastwp->window); } if (markedwp != NULL) { + markedwp->flags |= (PANE_REDRAW|PANE_STYLECHANGED); server_redraw_window_borders(markedwp->window); server_status_window(markedwp->window); } |