mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
Only update visibility if WS isn't destroyed after
No need to update visibility if the workspace will be destroyed right after.
This commit is contained in:
parent
72f297fc71
commit
2c43bd2ac8
@ -35,12 +35,13 @@ static void update_focus(swayc_t *c) {
|
|||||||
case C_WORKSPACE:
|
case C_WORKSPACE:
|
||||||
if (prev) {
|
if (prev) {
|
||||||
ipc_event_workspace(prev, c, "focus");
|
ipc_event_workspace(prev, c, "focus");
|
||||||
// update visibility of old workspace
|
|
||||||
update_visibility(prev);
|
|
||||||
|
|
||||||
// if the old workspace has no children, destroy it
|
// if the old workspace has no children, destroy it
|
||||||
if(prev->children->length == 0 && prev->floating->length == 0){
|
if(prev->children->length == 0 && prev->floating->length == 0){
|
||||||
destroy_workspace(prev);
|
destroy_workspace(prev);
|
||||||
|
} else {
|
||||||
|
// update visibility of old workspace
|
||||||
|
update_visibility(prev);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Update visibility of newly focused workspace
|
// Update visibility of newly focused workspace
|
||||||
|
Loading…
Reference in New Issue
Block a user