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:
parent
61eb1f0361
commit
d36c19b158
2 changed files with 4 additions and 0 deletions
|
@ -2274,6 +2274,8 @@ class Game(object):
|
||||||
self.finishMove()
|
self.finishMove()
|
||||||
if self.checkForWin():
|
if self.checkForWin():
|
||||||
return 1
|
return 1
|
||||||
|
self.top.update_idletasks()
|
||||||
|
self.top.busyUpdate()
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
def _autoDeal(self, sound=True):
|
def _autoDeal(self, sound=True):
|
||||||
|
|
|
@ -1689,6 +1689,8 @@ 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)
|
||||||
|
self.game.top.update_idletasks()
|
||||||
|
self.game.top.busyUpdate()
|
||||||
self.game.leaveState(old_state)
|
self.game.leaveState(old_state)
|
||||||
if TOOLKIT == 'kivy':
|
if TOOLKIT == 'kivy':
|
||||||
self.game.top.waitAnimation()
|
self.game.top.waitAnimation()
|
||||||
|
|
Loading…
Add table
Reference in a new issue