You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Dictionary::get_key_list use LocalVector instead of List.
This commit is contained in:
@@ -2199,8 +2199,7 @@ void VisualShaderEditor::_update_nodes() {
|
||||
}
|
||||
}
|
||||
|
||||
List<Variant> keys;
|
||||
added.get_key_list(&keys);
|
||||
LocalVector<Variant> keys = added.get_key_list();
|
||||
keys.sort_custom<StringLikeVariantOrder>();
|
||||
|
||||
for (const Variant &key : keys) {
|
||||
|
||||
Reference in New Issue
Block a user