mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 09:47:36 +02:00
fix: do not literally casefold row element
This commit is contained in:
parent
33fbf765ed
commit
2c07b8f3f2
@ -101,8 +101,8 @@ def get_delimited_mods(steam_path: Path) -> list[Any]:
|
||||
continue
|
||||
size = get_mod_size(mod)
|
||||
# NOTE: final col is cell renderer highlight toggle
|
||||
clean.append([meta.name.casefold(), symlink, mod_dir, size, False])
|
||||
clean.sort(key=lambda row: row[0])
|
||||
clean.append([meta.name, symlink, mod_dir, size, False])
|
||||
clean.sort(key=lambda row: row[0].casefold())
|
||||
return clean
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user