From 56142cc263f2b811700efef182a6f8dae019295e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 16 Nov 2020 15:11:11 +0000 Subject: [PATCH] Sort themes list --- theme.py | 1 + 1 file changed, 1 insertion(+) diff --git a/theme.py b/theme.py index 5b286245..6fd7480d 100644 --- a/theme.py +++ b/theme.py @@ -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