From dc86d9338d7486a309531120620eb3f45273914a Mon Sep 17 00:00:00 2001 From: Juhani Numminen Date: Mon, 2 Mar 2020 14:38:49 +0200 Subject: [PATCH] Work around Playable Preview launching unresponsive help window --- pysollib/tile/selectgame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pysollib/tile/selectgame.py b/pysollib/tile/selectgame.py index 1f2a2c4f..81704889 100644 --- a/pysollib/tile/selectgame.py +++ b/pysollib/tile/selectgame.py @@ -326,6 +326,7 @@ class SelectGameDialog(MfxDialog): dir = os.path.join("html", "rules") from pysollib.help import help_html help_html(self.app, doc, dir, self.top) + self.top.grab_release() # Don't want the help window appear frozen return MfxDialog.mDone(self, button)