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:
parent
7ef3b1d359
commit
90ffaeb2d1
1 changed files with 4 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue