summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/macosxSupport.py
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-12-07 15:28:10 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2010-12-07 15:28:10 (GMT)
commit10e05e17a3e7657ecdc4c7986d35275d76c6d603 (patch)
treefa8aed305c766c9acae68e250f0ddffb88a7b3da /Lib/idlelib/macosxSupport.py
parent0499d0b03ac934e767daf2a8170fa27ff4a1e397 (diff)
downloadcpython-10e05e17a3e7657ecdc4c7986d35275d76c6d603.zip
cpython-10e05e17a3e7657ecdc4c7986d35275d76c6d603.tar.gz
cpython-10e05e17a3e7657ecdc4c7986d35275d76c6d603.tar.bz2
Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files when quitting.
Diffstat (limited to 'Lib/idlelib/macosxSupport.py')
-rw-r--r--Lib/idlelib/macosxSupport.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py
index 346f04d..f5e3040 100644
--- a/Lib/idlelib/macosxSupport.py
+++ b/Lib/idlelib/macosxSupport.py
@@ -103,6 +103,11 @@ def overrideRootMenu(root, flist):
if flist:
root.bind('<<close-all-windows>>', flist.close_all_callback)
+ # The binding above doesn't reliably work on all versions of Tk
+ # on MacOSX. Adding command definition below does seem to do the
+ # right thing for now.
+ root.createcommand('exit', flist.close_all_callback)
+
###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding
tkversion = root.tk.eval('info patchlevel')