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:
parent
289df06b95
commit
4471a8a623
2 changed files with 4 additions and 3 deletions
|
@ -2274,6 +2274,7 @@ class Game(object):
|
|||
self.finishMove()
|
||||
if self.checkForWin():
|
||||
return 1
|
||||
if self.top is not None:
|
||||
self.top.update_idletasks()
|
||||
self.top.busyUpdate()
|
||||
return 0
|
||||
|
|
|
@ -1689,7 +1689,7 @@ class DealRow_StackMethods:
|
|||
if flip:
|
||||
self.game.flipMove(self)
|
||||
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.busyUpdate()
|
||||
self.game.leaveState(old_state)
|
||||
|
|
Loading…
Add table
Reference in a new issue