Fix crash when moving workspace to output

This commit is contained in:
Ryan Dwyer 2018-07-19 16:52:02 +10:00
parent 4931d0ddc5
commit dad3a8deee

View file

@ -232,8 +232,10 @@ void container_move_to(struct sway_container *container,
} }
if (new_workspace != old_workspace) { if (new_workspace != old_workspace) {
workspace_detect_urgent(new_workspace); workspace_detect_urgent(new_workspace);
if (old_workspace) {
workspace_detect_urgent(old_workspace); workspace_detect_urgent(old_workspace);
} }
}
} }
static bool sway_dir_to_wlr(enum movement_direction dir, static bool sway_dir_to_wlr(enum movement_direction dir,