diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2018-06-20 22:49:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-20 22:49:55 -0400 |
commit | 33c7420e7dd9d8e5b2aa15e98da6291bab6fcf33 (patch) | |
tree | 032fbff7d96359683fb006d5e0b68a0c2ab139f7 /Lib/idlelib/mainmenu.py | |
parent | a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77 (diff) | |
download | cpython-git-33c7420e7dd9d8e5b2aa15e98da6291bab6fcf33.tar.gz |
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').
Diffstat (limited to 'Lib/idlelib/mainmenu.py')
-rw-r--r-- | Lib/idlelib/mainmenu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py index 04acaedb77..9fe6b52294 100644 --- a/Lib/idlelib/mainmenu.py +++ b/Lib/idlelib/mainmenu.py @@ -97,7 +97,7 @@ menudefs = [ ('_Code Context', '<<toggle-code-context>>'), ]), - ('windows', [ + ('window', [ ('Zoom Height', '<<zoom-height>>'), ]), |