mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-03-23 05:15:14 -04:00
Sort the template view
This commit is contained in:
parent
140afd3c31
commit
c56517f94f
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package funkin.ui.debug.charting;
|
||||
|
||||
import flixel.util.FlxTimer;
|
||||
import funkin.util.SortUtil;
|
||||
import funkin.input.Cursor;
|
||||
import funkin.play.character.BaseCharacter;
|
||||
import funkin.play.character.CharacterData.CharacterDataParser;
|
||||
|
@ -106,6 +107,7 @@ class ChartEditorDialogHandler
|
|||
var splashTemplateContainer:VBox = dialog.findComponent('splashTemplateContainer', VBox);
|
||||
|
||||
var songList:Array<String> = SongDataParser.listSongIds();
|
||||
songList.sort(SortUtil.alphabetical);
|
||||
|
||||
for (targetSongId in songList)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue