mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Sorting of favorite games.
This commit is contained in:
parent
dda8348806
commit
f190b3d30e
1 changed files with 5 additions and 0 deletions
|
@ -1268,6 +1268,11 @@ class PysolMenubarTkCommon:
|
|||
gi = self.app.getGameInfo(id)
|
||||
if gi:
|
||||
games.append(gi)
|
||||
|
||||
def sort_func(gi):
|
||||
return gi.name
|
||||
|
||||
games.sort(key=sort_func)
|
||||
self.updateGamesMenu(submenu, games)
|
||||
state = self._getEnabledState
|
||||
in_favor = self.app.game.id in gameids
|
||||
|
|
Loading…
Add table
Reference in a new issue