From 4471a8a623664dbbb8a7965d8650e49f67d25f4d Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 28 Nov 2024 10:56:09 -0500 Subject: [PATCH] Fix error with game preview --- pysollib/game/__init__.py | 5 +++-- pysollib/stack.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pysollib/game/__init__.py b/pysollib/game/__init__.py index c2d6e9e9..4acbda27 100644 --- a/pysollib/game/__init__.py +++ b/pysollib/game/__init__.py @@ -2274,8 +2274,9 @@ class Game(object): self.finishMove() if self.checkForWin(): return 1 - self.top.update_idletasks() - self.top.busyUpdate() + if self.top is not None: + self.top.update_idletasks() + self.top.busyUpdate() return 0 def _autoDeal(self, sound=True): diff --git a/pysollib/stack.py b/pysollib/stack.py index 71abfb87..f15efb0e 100644 --- a/pysollib/stack.py +++ b/pysollib/stack.py @@ -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)