diff options
author | nicm <nicm> | 2017-08-30 10:33:57 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-08-30 10:33:57 +0000 |
commit | 17cf1b21c6c30a2d7b8cf7d9a29f495a9b01c475 (patch) | |
tree | c50c7f009ebdd188f6f3d9944190685dfc5e8402 /window-tree.c | |
parent | a7d1ee5433825c6e09877751a751aa0d9bd27b0d (diff) | |
download | rtmux-17cf1b21c6c30a2d7b8cf7d9a29f495a9b01c475.tar.gz rtmux-17cf1b21c6c30a2d7b8cf7d9a29f495a9b01c475.tar.bz2 rtmux-17cf1b21c6c30a2d7b8cf7d9a29f495a9b01c475.zip |
Pass flags into cmd_find_from_* to fix prefer-unattached, reported by
Thomas Sattler.
Diffstat (limited to 'window-tree.c')
-rw-r--r-- | window-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/window-tree.c b/window-tree.c index a0aed955..cbabd67e 100644 --- a/window-tree.c +++ b/window-tree.c @@ -874,7 +874,7 @@ window_tree_get_target(struct window_tree_itemdata *item, if (target == NULL) cmd_find_clear_state(fs, 0); else - cmd_find_from_winlink_pane(fs, wl, wp); + cmd_find_from_winlink_pane(fs, wl, wp, 0); return (target); } |