diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:12 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:12 (GMT) |
commit | 7a16207ce129f3068c97b51bcdc0614199af60d5 (patch) | |
tree | b8a47c484ba8e51f870851991ffddb9834476a93 /Lib/idlelib/macosxSupport.py | |
parent | ed91883bf537aec64eea7d75500f7d36d58b2713 (diff) | |
download | cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.zip cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.tar.gz cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.tar.bz2 |
Issue #3068: Add Idle extension configuration dialog to Options menu.
Original patch by Tal Einat.
Diffstat (limited to 'Lib/idlelib/macosxSupport.py')
-rw-r--r-- | Lib/idlelib/macosxSupport.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py index 4f5259c..10a06bb 100644 --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -142,11 +142,9 @@ def overrideRootMenu(root, flist): # Remove the 'About' entry from the help menu, it is in the application # menu del Bindings.menudefs[-1][1][0:2] - - # Remove the 'Configure' entry from the options menu, it is in the + # Remove the 'Configure Idle' entry from the options menu, it is in the # application menu as 'Preferences' - del Bindings.menudefs[-2][1][0:2] - + del Bindings.menudefs[-2][1][0] menubar = Menu(root) root.configure(menu=menubar) menudict = {} |