diff options
author | Tal Einat <taleinat+github@gmail.com> | 2018-08-02 09:18:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 09:18:29 +0300 |
commit | 10ea9409ceb5da83cb380b610750551e26561044 (patch) | |
tree | 202ccd012209ce6acb90928fa579a169eb4bd3ea /Lib/idlelib/query.py | |
parent | 80b762f010097ab8137782e5fbdc89c5c620ed4e (diff) | |
download | cpython-git-10ea9409ceb5da83cb380b610750551e26561044.tar.gz |
bpo-34120: fix IDLE freezing after closing dialogs (GH-8603)
Added missing .grab_release() calls to all places where we call .grab_set().
Diffstat (limited to 'Lib/idlelib/query.py')
-rw-r--r-- | Lib/idlelib/query.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/idlelib/query.py b/Lib/idlelib/query.py index 15add6d127..c2628cceb7 100644 --- a/Lib/idlelib/query.py +++ b/Lib/idlelib/query.py @@ -143,6 +143,10 @@ class Query(Toplevel): self.result = None self.destroy() + def destroy(self): + self.grab_release() + super().destroy() + class SectionName(Query): "Get a name for a config file section name." |