mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Dictionary::get_key_list use LocalVector instead of List.
This commit is contained in:
parent
4248411baf
commit
f7e4987d0e
13 changed files with 33 additions and 44 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue