diff options
author | nicm <nicm> | 2015-12-02 23:09:22 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-12-02 23:09:22 +0000 |
commit | 7236838dead7885b90c6a57736433bea63c26599 (patch) | |
tree | 91baaf949be25de826e3b8448e5b49e18f23a0e6 /cmd-break-pane.c | |
parent | a785a7f7005761a3ab52b8c336e1ff5881eb7d83 (diff) | |
download | rtmux-7236838dead7885b90c6a57736433bea63c26599.tar.gz rtmux-7236838dead7885b90c6a57736433bea63c26599.tar.bz2 rtmux-7236838dead7885b90c6a57736433bea63c26599.zip |
Mark new active pane changed after pane lost in window, and after
break-pane. Reported by tim@.
Diffstat (limited to 'cmd-break-pane.c')
-rw-r--r-- | cmd-break-pane.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd-break-pane.c b/cmd-break-pane.c index 39179cc7..707cd09b 100644 --- a/cmd-break-pane.c +++ b/cmd-break-pane.c @@ -82,6 +82,7 @@ cmd_break_pane_exec(struct cmd *self, struct cmd_q *cmdq) window_set_name(w, name); free(name); layout_init(w, wp); + wp->flags |= PANE_CHANGED; if (idx == -1) idx = -1 - options_get_number(dst_s->options, "base-index"); |