summaryrefslogtreecommitdiffstats
path: root/cmd-down-pane.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-20 19:35:33 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-20 19:35:33 +0000
commitc6012aaabc1eb10f42f77a1836c6e38faa7e396e (patch)
tree996f6dc27099d8eadcdd1beb50eb0547b08e5695 /cmd-down-pane.c
parentc0862dae458ed6a656069815317cf8d05faaafa3 (diff)
Now that #P could be in the status line, flag it for redraw when the active
pane changes.
Diffstat (limited to 'cmd-down-pane.c')
-rw-r--r--cmd-down-pane.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd-down-pane.c b/cmd-down-pane.c
index 640ad5bd..c3c12dba 100644
--- a/cmd-down-pane.c
+++ b/cmd-down-pane.c
@@ -55,6 +55,7 @@ cmd_down_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
if (w->active == NULL)
w->active = TAILQ_FIRST(&w->panes);
} while (!window_pane_visible(w->active));
+ server_status_window(wl->window);
return (0);
}