summaryrefslogtreecommitdiff
path: root/Lib/idlelib/macosxSupport.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-10-22 20:15:18 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2014-10-22 20:15:18 -0400
commita9421fb3a3013a8aacc18959c28c1b0002f34025 (patch)
tree21947d5899838ca1deab5d84fcfb3a40abd226b8 /Lib/idlelib/macosxSupport.py
parentc803bd84b529f3a300f9ba808b60dd50e4e365bf (diff)
downloadcpython-git-a9421fb3a3013a8aacc18959c28c1b0002f34025.tar.gz
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.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py
index b6488f84ca..65bd68885a 100644
--- a/Lib/idlelib/macosxSupport.py
+++ b/Lib/idlelib/macosxSupport.py
@@ -140,11 +140,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 = {}