Alphabetize theme order
This commit is contained in:
parent
1bba009656
commit
aaf079a141
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export preferences
|
||||||
proc findThemes*(dir: string): seq[string] =
|
proc findThemes*(dir: string): seq[string] =
|
||||||
for kind, path in walkDir(dir / "css" / "themes"):
|
for kind, path in walkDir(dir / "css" / "themes"):
|
||||||
result.add path.splitFile.name.capitalizeAscii
|
result.add path.splitFile.name.capitalizeAscii
|
||||||
reverse(result)
|
sort(result)
|
||||||
|
|
||||||
proc createPrefRouter*(cfg: Config) =
|
proc createPrefRouter*(cfg: Config) =
|
||||||
router preferences:
|
router preferences:
|
||||||
|
|
Loading…
Reference in a new issue