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

Fix error with game preview

This commit is contained in:
Joe R 2024-11-28 10:56:09 -05:00
parent 289df06b95
commit 4471a8a623
2 changed files with 4 additions and 3 deletions

View file

@ -2274,8 +2274,9 @@ class Game(object):
self.finishMove() self.finishMove()
if self.checkForWin(): if self.checkForWin():
return 1 return 1
self.top.update_idletasks() if self.top is not None:
self.top.busyUpdate() self.top.update_idletasks()
self.top.busyUpdate()
return 0 return 0
def _autoDeal(self, sound=True): def _autoDeal(self, sound=True):

View file

@ -1689,7 +1689,7 @@ class DealRow_StackMethods:
if flip: if flip:
self.game.flipMove(self) self.game.flipMove(self)
self.game.moveMove(1, self, r, frames=frames) self.game.moveMove(1, self, r, frames=frames)
if frames > 0: if frames > 0 and self.game.top is not None:
self.game.top.update_idletasks() self.game.top.update_idletasks()
self.game.top.busyUpdate() self.game.top.busyUpdate()
self.game.leaveState(old_state) self.game.leaveState(old_state)