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

Fixed bug with the preview using the wrong cardset after loading one with a subtype.

This commit is contained in:
Joe R 2023-11-26 12:02:40 -05:00
parent b05c922d3b
commit 069c8e8a7b
3 changed files with 12 additions and 0 deletions

View file

@ -427,6 +427,10 @@ class SelectGameDialogWithPreview(MfxDialog):
c = self.app.cardsets_cache.get(gi.category)
if c:
c2 = c.get(gi.subcategory)
if not c2:
c = self.app.cardsets_cache.get(cardset.type)
if c:
c2 = c.get(cardset.subtype)
if c2:
self.preview_app.images = c2[2]
else:

View file

@ -745,6 +745,10 @@ class SelectGameDialogWithPreview(SelectGameDialog):
c = self.app.cardsets_cache.get(gi.category)
if c:
c2 = c.get(gi.subcategory)
if not c2:
c = self.app.cardsets_cache.get(cardset.type)
if c:
c2 = c.get(cardset.subtype)
if c2:
self.preview_app.images = c2[2]
else:

View file

@ -520,6 +520,10 @@ class SelectGameDialogWithPreview(SelectGameDialog):
c = self.app.cardsets_cache.get(gi.category)
if c:
c2 = c.get(gi.subcategory)
if not c2:
c = self.app.cardsets_cache.get(cardset.type)
if c:
c2 = c.get(cardset.subtype)
if c2:
self.preview_app.images = c2[2]
else: