From 17cf1b21c6c30a2d7b8cf7d9a29f495a9b01c475 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 30 Aug 2017 10:33:57 +0000 Subject: Pass flags into cmd_find_from_* to fix prefer-unattached, reported by Thomas Sattler. --- cmd-rotate-window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd-rotate-window.c') 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); } -- cgit