From 82c6682bb776bb59e10a522897534af69938194f Mon Sep 17 00:00:00 2001 From: "Steven M. Gava" Date: Mon, 18 Feb 2002 01:45:43 +0000 Subject: [PATCH] further work on config system --- Lib/idlelib/Bindings.py | 16 ++++++++-------- Lib/idlelib/EditorWindow.py | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index 2269a90223..aae6106e0d 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -37,9 +37,9 @@ menudefs = [ ('_Undo', '<>'), ('_Redo', '<>'), None, - ('Cu_t', '<>'), - ('_Copy', '<>'), - ('_Paste', '<>'), + ('Cu_t', '<>'), + ('_Copy', '<>'), + ('_Paste', '<>'), ('Select _All', '<>'), None, ('_Find...', '<>'), @@ -58,11 +58,11 @@ menudefs = [ ('!_Debugger', '<>'), ('!_Auto-open stack viewer', '<>' ), ]), -# ('settings', [ -# ('_Configure Idle...', '<>'), -# None, -# ('Revert to _Default Settings', '<>'), -# ]), + ('settings', [ + ('_Configure Idle...', '<>'), + None, + ('Revert to _Default Settings', '<>'), + ]), ('help', [ ('_IDLE Help...', '<>'), ('Python _Documentation...', '<>'), diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index bba1702e4d..25a4c24e5f 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -233,7 +233,7 @@ class EditorWindow: ("edit", "_Edit"), ("format", "F_ormat"), ("run", "_Run"), - #("settings", "_Settings"), + ("settings", "_Settings"), ("windows", "_Windows"), ("help", "_Help"), ] -- 2.50.1