fix: do not literally casefold row element

This commit is contained in:
aclist 2026-05-04 01:19:04 +09:00
parent 33fbf765ed
commit 2c07b8f3f2

View File

@ -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