diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-21 16:27:41 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-21 16:27:41 +0000 |
commit | 5263b3f61ebc9e3d865af5dcc8b69ab38ac55e07 (patch) | |
tree | a0cd88bf0ead4a134f030381b35ec2df680fd028 /cmd-select-pane.c | |
parent | 962b9c654833a805c9ed9cbb6d7e781d88f4baea (diff) | |
download | rtmux-5263b3f61ebc9e3d865af5dcc8b69ab38ac55e07.tar.gz rtmux-5263b3f61ebc9e3d865af5dcc8b69ab38ac55e07.tar.bz2 rtmux-5263b3f61ebc9e3d865af5dcc8b69ab38ac55e07.zip |
Sync OpenBSD patchset 150:
Now that #P could be in the status line, flag it for redraw when the active
pane changes.
Diffstat (limited to 'cmd-select-pane.c')
-rw-r--r-- | cmd-select-pane.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-select-pane.c b/cmd-select-pane.c index e92add94..e1c04547 100644 --- a/cmd-select-pane.c +++ b/cmd-select-pane.c @@ -1,4 +1,4 @@ -/* $Id: cmd-select-pane.c,v 1.7 2009-07-20 15:42:05 tcunha Exp $ */ +/* $Id: cmd-select-pane.c,v 1.8 2009-07-21 16:27:41 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -63,6 +63,7 @@ cmd_select_pane_exec(struct cmd *self, struct cmd_ctx *ctx) return (-1); } window_set_active_pane(wl->window, wp); + server_status_window(wl->window); return (0); } |