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

Refresh forms to reduce unresponsiveness

This commit is contained in:
Joe R 2024-11-26 21:32:43 -05:00
parent 61eb1f0361
commit d36c19b158
2 changed files with 4 additions and 0 deletions

View file

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

View file

@ -1689,6 +1689,8 @@ class DealRow_StackMethods:
if flip:
self.game.flipMove(self)
self.game.moveMove(1, self, r, frames=frames)
self.game.top.update_idletasks()
self.game.top.busyUpdate()
self.game.leaveState(old_state)
if TOOLKIT == 'kivy':
self.game.top.waitAnimation()