mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Merge pull request #2638 from RyanDwyer/fix-tab-unmap-crash
Fix crash when unmapping last child of a tabbed workspace
This commit is contained in:
commit
31c6b5814f
@ -202,6 +202,9 @@ static struct sway_container *container_at_tabbed(struct sway_node *parent,
|
||||
}
|
||||
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
||||
list_t *children = node_get_children(parent);
|
||||
if (!children->length) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Tab titles
|
||||
int title_height = container_titlebar_height();
|
||||
|
Loading…
Reference in New Issue
Block a user