summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/macosx.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-21 04:35:47 (GMT)
committerGitHub <noreply@github.com>2018-06-21 04:35:47 (GMT)
commite1f0dceb266ae66a3b8ea9d087266f3960c59b2d (patch)
tree7025f38c82753bd2dacc7b104b5d555ab4969e00 /Lib/idlelib/macosx.py
parentf9243a22da6a609143e27abf3ca37a4f63d5aae9 (diff)
downloadcpython-e1f0dceb266ae66a3b8ea9d087266f3960c59b2d.zip
cpython-e1f0dceb266ae66a3b8ea9d087266f3960c59b2d.tar.gz
cpython-e1f0dceb266ae66a3b8ea9d087266f3960c59b2d.tar.bz2
bpo-33924: Change IDLE mainmenu.menudefs key 'windows' to 'window' (GH-7836)
Every other menudef key is the lowercase version of the corresponding main menu entry (in this case, 'Window'). (cherry picked from commit 33c7420e7dd9d8e5b2aa15e98da6291bab6fcf33) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/macosx.py')
-rw-r--r--Lib/idlelib/macosx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/macosx.py b/Lib/idlelib/macosx.py
index 3d29612..a2260af 100644
--- a/Lib/idlelib/macosx.py
+++ b/Lib/idlelib/macosx.py
@@ -148,7 +148,7 @@ def overrideRootMenu(root, flist):
root.configure(menu=menubar)
menudict = {}
- menudict['windows'] = menu = Menu(menubar, name='windows', tearoff=0)
+ menudict['window'] = menu = Menu(menubar, name='window', tearoff=0)
menubar.add_cascade(label='Window', menu=menu, underline=0)
def postwindowsmenu(menu=menu):