mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fixed crash in Ladybug game in Kivy.
This commit is contained in:
parent
b49844e15b
commit
158e76a130
1 changed files with 1 additions and 1 deletions
|
@ -1159,7 +1159,7 @@ class Ladybug(Game):
|
||||||
if self.preview > 1:
|
if self.preview > 1:
|
||||||
return
|
return
|
||||||
for row in self.s.rows:
|
for row in self.s.rows:
|
||||||
row.texts.misc.config(text=self.getTotal(row))
|
row.texts.misc.config(text=str(self.getTotal(row)))
|
||||||
|
|
||||||
def isGameWon(self):
|
def isGameWon(self):
|
||||||
for row in self.s.rows:
|
for row in self.s.rows:
|
||||||
|
|
Loading…
Add table
Reference in a new issue