diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-01-05 23:52:37 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-01-05 23:52:37 +0000 |
commit | 106011aa53a739c612aa7c631e5d3f2542f74378 (patch) | |
tree | 101a2362cf18174f0703f148cca513d2a0c6d767 /cmd-select-pane.c | |
parent | 97c40b1f376cc79a2a48eac8fe10ae11deaeb828 (diff) | |
download | rtmux-106011aa53a739c612aa7c631e5d3f2542f74378.tar.gz rtmux-106011aa53a739c612aa7c631e5d3f2542f74378.tar.bz2 rtmux-106011aa53a739c612aa7c631e5d3f2542f74378.zip |
Sync OpenBSD patchset 597:
Options to set the colour of the pane borders, with different colours for the
active pane.
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 67b0c777..985db8d9 100644 --- a/cmd-select-pane.c +++ b/cmd-select-pane.c @@ -1,4 +1,4 @@ -/* $Id: cmd-select-pane.c,v 1.11 2009-11-14 17:56:39 tcunha Exp $ */ +/* $Id: cmd-select-pane.c,v 1.12 2010-01-05 23:52:37 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -53,6 +53,7 @@ cmd_select_pane_exec(struct cmd *self, struct cmd_ctx *ctx) } window_set_active_pane(wl->window, wp); server_status_window(wl->window); + server_redraw_window_borders(wl->window); return (0); } |