mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
When swapping pane positions, swap the PANE_HIDDEN flag as well, otherwise tmux
crashes when trying to find the new active pane. While here, nuke an unused pane flag. Fixes PR 6160, reported by and a slightly different version of diff tested by ralf.horstmann at gmx.de.
This commit is contained in:
@ -158,6 +158,7 @@ cmd_swap_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
struct window *w;
|
||||
struct window_pane *tmp_wp, *src_wp, *dst_wp;
|
||||
u_int xx, yy;
|
||||
int flags;
|
||||
|
||||
if (data == NULL)
|
||||
return (0);
|
||||
@ -209,10 +210,15 @@ cmd_swap_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
|
||||
xx = src_wp->xoff;
|
||||
yy = src_wp->yoff;
|
||||
flags = src_wp->flags;
|
||||
src_wp->xoff = dst_wp->xoff;
|
||||
src_wp->yoff = dst_wp->yoff;
|
||||
src_wp->flags &= ~PANE_HIDDEN;
|
||||
src_wp->flags |= dst_wp->flags & PANE_HIDDEN;
|
||||
dst_wp->xoff = xx;
|
||||
dst_wp->yoff = yy;
|
||||
dst_wp->flags &= ~PANE_HIDDEN;
|
||||
dst_wp->flags |= flags & PANE_HIDDEN;
|
||||
|
||||
xx = src_wp->sx;
|
||||
yy = src_wp->sy;
|
||||
@ -220,7 +226,10 @@ cmd_swap_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
window_pane_resize(dst_wp, xx, yy);
|
||||
|
||||
if (!data->flag_detached) {
|
||||
window_set_active_pane(w, dst_wp);
|
||||
tmp_wp = dst_wp;
|
||||
if (tmp_wp->flags & PANE_HIDDEN)
|
||||
tmp_wp = src_wp;
|
||||
window_set_active_pane(w, tmp_wp);
|
||||
layout_refresh(w, 0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user