1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Typo fix: rename SortableVisbilityMode

This commit is contained in:
Janis Kirsteins
2025-01-19 00:33:39 +01:00
parent 7b1ed520bd
commit 815e905972
15 changed files with 24 additions and 24 deletions

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), SortableVisbilityMode::VISIBLE);
Control *c = as_sortable_control(get_child(i), SortableVisibilityMode::VISIBLE);
if (!c) {
continue;
}