diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-01-18 19:00:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-18 19:00:45 (GMT) |
commit | 39ed289a3511d2e9bf0950a9d5dc53c8194f61b9 (patch) | |
tree | 4cc8a87f8bc1f55e868587fc08bbbba02fa53225 /Lib/idlelib/macosx.py | |
parent | 478f8291327a3e3ab17b5857699565df43a9e952 (diff) | |
download | cpython-39ed289a3511d2e9bf0950a9d5dc53c8194f61b9.zip cpython-39ed289a3511d2e9bf0950a9d5dc53c8194f61b9.tar.gz cpython-39ed289a3511d2e9bf0950a9d5dc53c8194f61b9.tar.bz2 |
bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)
It previously deleted Window => Zoom Height by mistake.
(Zoom Height is now on the Options menu). On Mac, the settings
dialog is accessed via Preferences on the IDLE menu.
Diffstat (limited to 'Lib/idlelib/macosx.py')
-rw-r--r-- | Lib/idlelib/macosx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/macosx.py b/Lib/idlelib/macosx.py index 9be4ed2..d6a1b37 100644 --- a/Lib/idlelib/macosx.py +++ b/Lib/idlelib/macosx.py @@ -178,7 +178,7 @@ def overrideRootMenu(root, flist): del mainmenu.menudefs[-1][1][0:2] # Remove the 'Configure Idle' entry from the options menu, it is in the # application menu as 'Preferences' - del mainmenu.menudefs[-2][1][0] + del mainmenu.menudefs[-3][1][0:1] menubar = Menu(root) root.configure(menu=menubar) menudict = {} |