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

Fixed resetting of cardset on cancelling select game.

This commit is contained in:
Joe R 2024-06-07 19:11:23 -04:00
parent 7ef3b1d359
commit 90ffaeb2d1

View file

@ -330,7 +330,10 @@ class SelectGameDialog(MfxDialog):
self.tree.n_expansions = 1 # save xyview in any case
if button == 1: # Cancel button
# If the user cancels, revert any cardset change from the preview.
self.app.cardset = self.cardset
if self.app.cardset.name != self.cardset.name:
self.app.loadCardset(self.cardset,
id=self.game.gameinfo.category,
tocache=True, noprogress=True)
if button == 10: # Rules
doc = self.app.getGameRulesFilename(self.tree.selection_key)
if not doc: