mirror of
https://github.com/rangermix/TwitchDropsMiner.git
synced 2026-06-08 05:14:35 +00:00
Sort game names for the settings tab
This commit is contained in:
2
gui.py
2
gui.py
@@ -1107,7 +1107,7 @@ class SettingsPanel:
|
||||
key.delete(self.AUTOSTART_NAME, silent=True)
|
||||
|
||||
def set_games(self, games: abc.Iterable[Game]) -> None:
|
||||
games_list = list(map(str, games))
|
||||
games_list = sorted(map(str, games))
|
||||
self._exclude_entry.config(values=games_list)
|
||||
self._priority_entry.config(values=games_list)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user