Fix GridContainer minimum size when there's a hidden parent

When calculating minimum size, GridContainer only looks at children that are
returned from `as_sortable_control()`. That defaults to only showing children
visible in the tree, so if the grid has a hidden parent the minimum size
becomes (0, 0).

After this change only the child itself needs to be visible, making
`GridContainer::get_minimum_size()` behave the same way as other controls.

Fixes #91722.
This commit is contained in:
Anni Ryynänen 2024-06-20 13:49:09 +03:00
parent b75f0485ba
commit 0fefd6cc80
No known key found for this signature in database
GPG Key ID: 0C29030C4FA87DDC

View File

@ -279,7 +279,7 @@ Size2 GridContainer::get_minimum_size() const {
int valid_controls_index = 0;
for (int i = 0; i < get_child_count(); i++) {
Control *c = as_sortable_control(get_child(i));
Control *c = as_sortable_control(get_child(i), SortableVisbilityMode::VISIBLE);
if (!c) {
continue;
}