1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-18 22:27:25 +01:00

[fix] handle auto layout of empty container

This commit is contained in:
wil 2017-01-14 19:48:41 +01:00
parent 5c40cc46ac
commit a90dddea40

View file

@ -1615,7 +1615,8 @@ size_t auto_slave_group_count(const swayc_t *container) {
* Return the combined number of master and slave groups in the container. * Return the combined number of master and slave groups in the container.
*/ */
size_t auto_group_count(const swayc_t *container) { size_t auto_group_count(const swayc_t *container) {
return auto_slave_group_count(container) + (container->nb_master ? 1 : 0); return auto_slave_group_count(container)
+ (container->children->length && container->nb_master ? 1 : 0);
} }
/** /**