iOS: alphabetically sort .love file list.

Fixes #1984.
This commit is contained in:
Sasha Szpakowski
2023-11-18 13:44:41 -04:00
parent 81393b9aed
commit 99e7022d2d
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -150,6 +150,8 @@ static NSArray *getLovesInDocuments()
[paths addObject:path.stringByDeletingLastPathComponent];
}
[paths sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
return paths;
}