diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:12 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:12 (GMT) |
commit | 7a16207ce129f3068c97b51bcdc0614199af60d5 (patch) | |
tree | b8a47c484ba8e51f870851991ffddb9834476a93 /Lib/idlelib/Bindings.py | |
parent | ed91883bf537aec64eea7d75500f7d36d58b2713 (diff) | |
download | cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.zip cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.tar.gz cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.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 df2b251..2072c7e 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -75,7 +75,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', [ |