diff options
Diffstat (limited to 'editor/plugins/animation_player_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/animation_player_editor_plugin.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/editor/plugins/animation_player_editor_plugin.cpp b/editor/plugins/animation_player_editor_plugin.cpp index 3399f265fc..8de00dfcd1 100644 --- a/editor/plugins/animation_player_editor_plugin.cpp +++ b/editor/plugins/animation_player_editor_plugin.cpp @@ -1025,8 +1025,7 @@ void AnimationPlayerEditor::_update_name_dialog_library_dropdown() { } int current_lib_id = index_offset; // Don't default to [Global] if it doesn't exist yet. - for (int i = 0; i < libraries.size(); i++) { - StringName library_name = libraries[i]; + for (const StringName &library_name : libraries) { if (!EditorNode::get_singleton()->is_resource_read_only(player->get_animation_library(library_name))) { library->add_item((library_name == StringName()) ? String(TTR("[Global]")) : String(library_name)); library->set_item_metadata(valid_library_count, String(library_name)); @@ -1043,8 +1042,7 @@ void AnimationPlayerEditor::_update_name_dialog_library_dropdown() { // one which isn't a read-only library. bool auto_assigning_non_global_library = false; if (current_library_name == StringName() && valid_library_count > 0) { - for (int i = 0; i < libraries.size(); i++) { - StringName library_name = libraries[i]; + for (const StringName &library_name : libraries) { if (!EditorNode::get_singleton()->is_resource_read_only(player->get_animation_library(library_name))) { current_library_name = library_name; current_lib_id = 0; |