Merge branch 'obsd-master'

pull/1891/head
Thomas Adam 2019-08-27 10:02:31 +01:00
commit 6640790bdc
1 changed files with 3 additions and 3 deletions

View File

@ -77,10 +77,10 @@ cmd_swap_window_exec(struct cmd *self, struct cmdq_item *item)
wl_src->window = w_dst;
TAILQ_INSERT_TAIL(&w_dst->winlinks, wl_src, wentry);
if (!args_has(self->args, 'd')) {
session_select(src, wl_src->idx);
if (args_has(self->args, 'd')) {
session_select(dst, wl_dst->idx);
if (src != dst)
session_select(dst, wl_dst->idx);
session_select(src, wl_src->idx);
}
session_group_synchronize_from(src);
server_redraw_session_group(src);