mirror of https://github.com/godotengine/godot
Fix ScrollContainer configuration warnings
This commit is contained in:
parent
e4e024ab88
commit
59c66585d5
|
|
@ -547,7 +547,7 @@ PackedStringArray ScrollContainer::get_configuration_warnings() const {
|
|||
int found = 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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue