Case insensitive filename sorting

This commit is contained in:
Michael Stevenson 2022-11-27 09:50:03 -08:00
parent d49098dbca
commit da90d86bbd
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class CaptionedImage():
# sort
def __lt__(self, other):
return self.path < other.path
return str(self.path).lower() < str(other.path).lower()
class ImageView(tk.Frame):