Skip to content

Commit 7b5457d

Browse files
committed
cs_themes: Sort cursor themes alphabetically
1 parent f3bf128 commit 7b5457d

File tree

1 file changed

+1
-1
lines changed
  • files/usr/share/cinnamon/cinnamon-settings/modules

1 file changed

+1
-1
lines changed

files/usr/share/cinnamon/cinnamon-settings/modules/cs_themes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def _load_icon_themes(self):
440440
def _load_cursor_themes(self):
441441
dirs = ICON_FOLDERS
442442
valid = walk_directories(dirs, lambda d: os.path.isdir(d) and os.path.exists(os.path.join(d, "cursors")), return_directories=True)
443-
valid.sort(key=lambda a: self.get_theme_sort_key(a[0]))
443+
valid.sort(key=lambda a: a[0].lower())
444444
res = []
445445
for i in valid:
446446
for j in res:

0 commit comments

Comments
 (0)