mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fix for Mahjongg game short name sorting.
This commit is contained in:
parent
ff4bd148fa
commit
f5dcfe2979
1 changed files with 6 additions and 0 deletions
|
@ -885,9 +885,15 @@ class PysolMenubarTkCommon:
|
|||
def _addSelectMahjonggGameSubMenu(self, games, menu, command, variable):
|
||||
def select_func(gi):
|
||||
return gi.si.game_type == GI.GT_MAHJONGG
|
||||
|
||||
def sort_func(gi):
|
||||
return gi.short_name
|
||||
|
||||
mahjongg_games = list(filter(select_func, games))
|
||||
if len(mahjongg_games) == 0:
|
||||
return
|
||||
|
||||
mahjongg_games.sort(key=sort_func)
|
||||
#
|
||||
menu = MfxMenu(menu, label=n_("&Mahjongg games"))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue