diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2020-01-25 04:00:54 -0500 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2020-01-25 04:00:54 -0500 |
commit | d0d9fa8c5e30aff71b6d5e8b2673396622f33270 (patch) | |
tree | 7160565d1b18389974b72118e7b88cb3c8bde964 /Lib/idlelib/configdialog.py | |
parent | 9017e0bd5e124ae6d2ed94b9e9cacb2e86270980 (diff) | |
download | cpython-git-d0d9fa8c5e30aff71b6d5e8b2673396622f33270.tar.gz |
bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-rw-r--r-- | Lib/idlelib/configdialog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 0e007b516e..2f95c9ccaa 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -191,6 +191,7 @@ class ConfigDialog(Toplevel): Methods: destroy: inherited """ + changes.clear() self.destroy() def destroy(self): |