diff options
author | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2018-04-02 18:24:08 -0400 |
---|---|---|
committer | Wilson E. Alvarez <wilson.e.alvarez1@gmail.com> | 2018-04-02 19:06:13 -0400 |
commit | bb9c75c5ed818197794dcae109f4555db4f5cb7c (patch) | |
tree | 409b8f14bcb5ca6b987083ee5e39339e56b809f3 /editor | |
parent | 59710880cd21d79ae1329f04eb35ea48e646acb3 (diff) |
Removed unneeded sort from SpriteFramesEditor plugin
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/sprite_frames_editor_plugin.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index d8d0a6f013..71a3c90795 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -458,8 +458,6 @@ void SpriteFramesEditor::_update_library(bool p_skip_selector) { List<StringName> anim_names; - anim_names.sort_custom<StringName::AlphCompare>(); - frames->get_animation_list(&anim_names); anim_names.sort_custom<StringName::AlphCompare>(); |