1
0
Fork 0
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:
Joe R 2022-03-09 19:49:54 -05:00
parent ff4bd148fa
commit f5dcfe2979

View file

@ -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"))