FIX: GridContainer children visibility check for min size evaluation
This commit is contained in:
parent
5fa6f9d7ff
commit
848eeafe29
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ Size2 GridContainer::get_minimum_size() const {
|
|||
for (int i = 0; i < get_child_count(); i++) {
|
||||
|
||||
Control *c = Object::cast_to<Control>(get_child(i));
|
||||
if (!c || !c->is_visible_in_tree())
|
||||
if (!c || !c->is_visible())
|
||||
continue;
|
||||
int row = valid_controls_index / columns;
|
||||
int col = valid_controls_index % columns;
|
||||
|
|
Loading…
Reference in a new issue