1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Update the menu's game ID after changing the game, in case the user cancels.

This commit is contained in:
Joe R 2023-11-10 20:37:53 -05:00
parent 5c51f927eb
commit 254f445388

View file

@ -1139,9 +1139,11 @@ class PysolMenubarTkCommon:
def mSelectGame(self, *args):
self._mSelectGame(self.tkopt.gameid.get())
self.tkopt.gameid.set(self.game.id)
def mSelectGamePopular(self, *args):
self._mSelectGame(self.tkopt.gameid_popular.get())
self.tkopt.gameid_popular.set(self.game.id)
def _mSelectGameDialog(self, d):
if d.status == 0 and d.button == 0 and d.gameid != self.game.id: