floating_maybe_reassign_ws: only re-focus if previously focused
Fixes #3979
This commit is contained in:
parent
e2b2a28625
commit
5eab604a10
|
@ -514,9 +514,15 @@ bool floating_maybe_reassign_ws(Con *con) {
|
|||
Con *content = output_get_content(output->con);
|
||||
Con *ws = TAILQ_FIRST(&(content->focus_head));
|
||||
DLOG("Moving con %p / %s to workspace %p / %s\n", con, con->name, ws, ws->name);
|
||||
Con *needs_focus = con_descend_focused(con);
|
||||
if (!con_inside_focused(needs_focus)) {
|
||||
needs_focus = NULL;
|
||||
}
|
||||
con_move_to_workspace(con, ws, false, true, false);
|
||||
if (needs_focus) {
|
||||
workspace_show(ws);
|
||||
con_activate(con_descend_focused(con));
|
||||
con_activate(needs_focus);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue