mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-16 15:41:25 +01:00
Fix crash when moving workspace to output
This commit is contained in:
parent
4931d0ddc5
commit
dad3a8deee
1 changed files with 3 additions and 1 deletions
|
@ -232,7 +232,9 @@ void container_move_to(struct sway_container *container,
|
|||
}
|
||||
if (new_workspace != old_workspace) {
|
||||
workspace_detect_urgent(new_workspace);
|
||||
workspace_detect_urgent(old_workspace);
|
||||
if (old_workspace) {
|
||||
workspace_detect_urgent(old_workspace);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue