From 5263b3f61ebc9e3d865af5dcc8b69ab38ac55e07 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Tue, 21 Jul 2009 16:27:41 +0000 Subject: Sync OpenBSD patchset 150: Now that #P could be in the status line, flag it for redraw when the active pane changes. --- cmd-up-pane.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd-up-pane.c') diff --git a/cmd-up-pane.c b/cmd-up-pane.c index 36a83965..70718ca3 100644 --- a/cmd-up-pane.c +++ b/cmd-up-pane.c @@ -1,4 +1,4 @@ -/* $Id: cmd-up-pane.c,v 1.10 2009-07-20 15:42:05 tcunha Exp $ */ +/* $Id: cmd-up-pane.c,v 1.11 2009-07-21 16:27:41 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -55,6 +55,7 @@ cmd_up_pane_exec(struct cmd *self, struct cmd_ctx *ctx) if (w->active == NULL) w->active = TAILQ_LAST(&w->panes, window_panes); } while (!window_pane_visible(w->active)); + server_status_window(wl->window); return (0); } -- cgit