Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
fix(ui): πŸ› fix modpack version filter sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
AnzhiZhang committed Jun 27, 2022
1 parent 889746f commit b7cb871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/window/frames/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def init(self):
self.game_version_combobox['values'] = SEARCH.VERSIONS

def set_modpack_version(self, values: List[str]):
self.modpack_version_combobox['values'] = sorted(values, reverse=True)
self.modpack_version_combobox['values'] = values
self.modpack_version_combobox.current(0)

def on_select(self, event=None):
Expand Down

0 comments on commit b7cb871

Please sign in to comment.