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

Fixed bug where the preview can partially change the main game cardset.

This commit is contained in:
Joe R 2024-05-12 22:32:17 -04:00
parent 69b98c9982
commit a14eef2b60

View file

@ -358,6 +358,7 @@ class SelectGameDialogWithPreview(SelectGameDialog):
self.gameid = gameid
self.bookmark = bookmark
self.criteria = SearchCriteria()
self.cardset = self.app.cardset.copy()
self.random = None
if self.TreeDataHolder_Class.data is None:
self.TreeDataHolder_Class.data = self.TreeData_Class(app)
@ -499,6 +500,7 @@ class SelectGameDialogWithPreview(SelectGameDialog):
return SelectGameDialog.initKw(self, kw)
def destroy(self):
self.app.cardset = self.cardset
self.deletePreview(destroy=1)
self.preview.unbind_all()
SelectGameDialog.destroy(self)