fix hangman error if display string empty
This commit is contained in:
parent
7d9bf4f7fb
commit
f59346f307
|
@ -262,8 +262,9 @@ class Hangman(object):
|
||||||
|
|
||||||
#for i in range(0,len(s2)):
|
#for i in range(0,len(s2)):
|
||||||
# draw.text((fo_word2[0]+i*5, fo_word2[1]), s2[i], font=font, fill=C_TEXT)
|
# draw.text((fo_word2[0]+i*5, fo_word2[1]), s2[i], font=font, fill=C_TEXT)
|
||||||
|
if (len(s1)>0):
|
||||||
draw.text(self._fo_word, s1.upper(), font=font, fill=C_TEXT)
|
draw.text(self._fo_word, s1.upper(), font=font, fill=C_TEXT)
|
||||||
|
if (len(s2)>0):
|
||||||
draw.text(self._fo_word2, s2.upper(), font=font, fill=C_TEXT)
|
draw.text(self._fo_word2, s2.upper(), font=font, fill=C_TEXT)
|
||||||
|
|
||||||
def _drawLoseScreen(self,draw):
|
def _drawLoseScreen(self,draw):
|
||||||
|
|
Loading…
Reference in New Issue