diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:18 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:18 (GMT) |
commit | a9421fb3a3013a8aacc18959c28c1b0002f34025 (patch) | |
tree | 21947d5899838ca1deab5d84fcfb3a40abd226b8 /Lib/idlelib/Bindings.py | |
parent | c803bd84b529f3a300f9ba808b60dd50e4e365bf (diff) | |
download | cpython-a9421fb3a3013a8aacc18959c28c1b0002f34025.zip cpython-a9421fb3a3013a8aacc18959c28c1b0002f34025.tar.gz cpython-a9421fb3a3013a8aacc18959c28c1b0002f34025.tar.bz2 |
Issue #3068: Add Idle extension configuration dialog to Options menu.
Original patch by Tal Einat.
Diffstat (limited to 'Lib/idlelib/Bindings.py')
-rw-r--r-- | Lib/idlelib/Bindings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index c9bef21..226671c 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -77,7 +77,8 @@ menudefs = [ ('!_Auto-open Stack Viewer', '<<toggle-jit-stack-viewer>>'), ]), ('options', [ - ('_Configure IDLE...', '<<open-config-dialog>>'), + ('Configure _IDLE', '<<open-config-dialog>>'), + ('Configure _Extensions', '<<open-config-extensions-dialog>>'), None, ]), ('help', [ |