diff options
| author | Wilson E. Alvarez | 2018-04-02 18:24:08 -0400 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-29 15:02:18 +0200 |
| commit | 0d6c64b38aa6632d44ed35dede755e18a0671690 (patch) | |
| tree | 82e0aa7aa7620ff3bbcab32d1fc5885c1b487710 /editor/plugins/sprite_frames_editor_plugin.cpp | |
| parent | c968c787e5f39734a8cd15b1650f9db78bb36ed4 (diff) | |
| download | godot-0d6c64b38aa6632d44ed35dede755e18a0671690.tar.gz godot-0d6c64b38aa6632d44ed35dede755e18a0671690.tar.zst godot-0d6c64b38aa6632d44ed35dede755e18a0671690.zip | |
Removed unneeded sort from SpriteFramesEditor plugin
(cherry picked from commit bb9c75c5ed818197794dcae109f4555db4f5cb7c)
Diffstat (limited to '')
| -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 d8d0a6f01..71a3c9079 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>(); |
