diff options
author | nicm <nicm> | 2014-10-21 22:22:04 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-10-21 22:22:04 +0000 |
commit | a02c2e55c0ee0a6f2d3a897c06a396794b765a6c (patch) | |
tree | 3ca0f7fa5f46024a10c3f2f1c5a92448bc2f0828 /tmux.h | |
parent | 85671a5bed961b7a542ffce853749fb61b0558ca (diff) | |
download | rtmux-a02c2e55c0ee0a6f2d3a897c06a396794b765a6c.tar.gz rtmux-a02c2e55c0ee0a6f2d3a897c06a396794b765a6c.tar.bz2 rtmux-a02c2e55c0ee0a6f2d3a897c06a396794b765a6c.zip |
Only redraw pane when it has actually changed.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2116,7 +2116,7 @@ void window_destroy(struct window *); struct window_pane *window_get_active_at(struct window *, u_int, u_int); void window_set_active_at(struct window *, u_int, u_int); struct window_pane *window_find_string(struct window *, const char *); -void window_set_active_pane(struct window *, struct window_pane *); +int window_set_active_pane(struct window *, struct window_pane *); struct window_pane *window_add_pane(struct window *, u_int); void window_resize(struct window *, u_int, u_int); int window_zoom(struct window_pane *); |