mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
FIX: GridContainer children visibility check for min size evaluation
This commit is contained in:
parent
5fa6f9d7ff
commit
848eeafe29
@ -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 New Issue
Block a user