mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fix for the total text crashing Ninety-One on Android (#436)
This commit is contained in:
parent
a79c81109b
commit
78de569074
1 changed files with 1 additions and 1 deletions
|
@ -1409,7 +1409,7 @@ class NinetyOne(Game):
|
||||||
def updateText(self):
|
def updateText(self):
|
||||||
if self.preview > 1 or not self.texts.score:
|
if self.preview > 1 or not self.texts.score:
|
||||||
return
|
return
|
||||||
self.texts.score.config(text=self.getTotal())
|
self.texts.score.config(text=str(self.getTotal()))
|
||||||
|
|
||||||
def getTotal(self):
|
def getTotal(self):
|
||||||
total = 0
|
total = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue