Skip to content

Commit a01e235

Browse files
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. (cherry picked from commit 39ed289) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 6ca7183 commit a01e235

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Lib/idlelib/NEWS.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Released on 2019-??-??
33
======================================
44

55

6+
bpo-35770: IDLE macosx deletes Options => Configure IDLE.
7+
It previously deleted Window => Zoom Height by mistake.
8+
(Zoom Height is now on the Options menu). On Mac, the settings
9+
dialog is accessed via Preferences on the IDLE menu.
10+
611
bpo-35769: Change new file name from 'Untitled' to 'untitled'.
712

813
bpo-35660: Fix imports in window module.

Lib/idlelib/macosx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def overrideRootMenu(root, flist):
178178
del mainmenu.menudefs[-1][1][0:2]
179179
# Remove the 'Configure Idle' entry from the options menu, it is in the
180180
# application menu as 'Preferences'
181-
del mainmenu.menudefs[-2][1][0]
181+
del mainmenu.menudefs[-3][1][0:1]
182182
menubar = Menu(root)
183183
root.configure(menu=menubar)
184184
menudict = {}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
IDLE macosx deletes Options => Configure IDLE. It previously deleted Window
2+
=> Zoom Height by mistake. (Zoom Height is now on the Options menu). On
3+
Mac, the settings dialog is accessed via Preferences on the IDLE menu.

0 commit comments

Comments
 (0)