mirror of
https://github.com/swaywm/sway.git
synced 2025-01-02 18:37:55 +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
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
||||||
list_t *children = node_get_children(parent);
|
list_t *children = node_get_children(parent);
|
||||||
|
if (!children->length) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// Tab titles
|
// Tab titles
|
||||||
int title_height = container_titlebar_height();
|
int title_height = container_titlebar_height();
|
||||||
|
|
Loading…
Reference in a new issue