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

Fix exception when changing games in preview

When changing games from Mahjongg to French type with Mahjongg cardset
active, an exception would occur. This was caused by 1d43029.
This commit is contained in:
Roderik Ploszek 2018-04-15 15:02:16 +02:00
parent b4a55cd1fd
commit 0b2e22c452

View file

@ -148,11 +148,11 @@ class Images:
# bottoms / letters
bottom = None
neg_bottom = None
while len(self._bottom_positive) < self.cs.nbottoms:
while len(self._bottom_positive) < max(7, self.cs.nbottoms):
if bottom is None:
bottom = createImage(cw, ch, fill=None, outline="#000000")
self._bottom_positive.append(bottom)
while len(self._bottom_negative) < self.cs.nbottoms:
while len(self._bottom_negative) < max(7, self.cs.nbottoms):
if neg_bottom is None:
neg_bottom = createImage(cw, ch, fill=None, outline="#ffffff")
self._bottom_negative.append(neg_bottom)