diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-01 21:10:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-01 21:10:08 +0000 |
commit | 91bc6836f7f4c5a983b12be233a279d7dfd4ec99 (patch) | |
tree | b0d67bec1833cfe8c897b4c9a6f6eee8015d8eb7 /tmux.h | |
parent | 474853439c358d9ce23bdc9b87361d6127f9e061 (diff) | |
download | rtmux-91bc6836f7f4c5a983b12be233a279d7dfd4ec99.tar.gz rtmux-91bc6836f7f4c5a983b12be233a279d7dfd4ec99.tar.bz2 rtmux-91bc6836f7f4c5a983b12be233a279d7dfd4ec99.zip |
- Allow switching to hidden windows (for active-only layout).
- Don't update unnecessarily for other layouts when changing active pane doesn't matter.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.294 2009-04-01 18:21:42 nicm Exp $ */ +/* $Id: tmux.h,v 1.295 2009-04-01 21:10:08 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1527,7 +1527,7 @@ void window_pane_mouse(struct window_pane *, struct client *, u_char, u_char, u_char); /* layout.c */ -void layout_refresh(struct window *); +void layout_refresh(struct window *, int); void layout_next(struct window *); /* window-clock.c */ |