Sort themes list

main
Bob Mottram 2020-11-16 15:11:11 +00:00
parent ccdb1131d2
commit 56142cc263
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ def getThemesList(baseDir: str) -> []:
themeName != 'icons' and themeName != 'fonts':
themes.append(themeName.title())
break
themes.sort()
print('Themes available: ' + str(themes))
return themes