diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:04:09 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-08-30 12:04:09 +0100 |
commit | 07c679b52d18f198a60da2bd5b9b743bac55680f (patch) | |
tree | 6e6db084991d889e61e0a5d53db1f8740a666ce6 /cmd-rotate-window.c | |
parent | 2e4e521629a8e23502551cfe13ea327e1971d1e2 (diff) | |
parent | b4c633cc40cd3d5963e24e6d560bc2c7f6553000 (diff) | |
download | rtmux-07c679b52d18f198a60da2bd5b9b743bac55680f.tar.gz rtmux-07c679b52d18f198a60da2bd5b9b743bac55680f.tar.bz2 rtmux-07c679b52d18f198a60da2bd5b9b743bac55680f.zip |
Merge branch 'master' into 2.6-rc
Diffstat (limited to 'cmd-rotate-window.c')
-rw-r--r-- | cmd-rotate-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-rotate-window.c b/cmd-rotate-window.c index 7a1d9b28..5a900a13 100644 --- a/cmd-rotate-window.c +++ b/cmd-rotate-window.c @@ -78,7 +78,7 @@ cmd_rotate_window_exec(struct cmd *self, struct cmdq_item *item) if ((wp = TAILQ_PREV(w->active, window_panes, entry)) == NULL) wp = TAILQ_LAST(&w->panes, window_panes); window_set_active_pane(w, wp); - cmd_find_from_winlink_pane(current, wl, wp); + cmd_find_from_winlink_pane(current, wl, wp, 0); server_redraw_window(w); } else { wp = TAILQ_FIRST(&w->panes); @@ -106,7 +106,7 @@ cmd_rotate_window_exec(struct cmd *self, struct cmdq_item *item) if ((wp = TAILQ_NEXT(w->active, entry)) == NULL) wp = TAILQ_FIRST(&w->panes); window_set_active_pane(w, wp); - cmd_find_from_winlink_pane(current, wl, wp); + cmd_find_from_winlink_pane(current, wl, wp, 0); server_redraw_window(w); } |