]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
further work on config system
authorSteven M. Gava <elguavas@python.net>
Mon, 18 Feb 2002 01:45:43 +0000 (01:45 +0000)
committerSteven M. Gava <elguavas@python.net>
Mon, 18 Feb 2002 01:45:43 +0000 (01:45 +0000)
Lib/idlelib/Bindings.py
Lib/idlelib/EditorWindow.py

index 2269a90223e6df5575263dca467cd8c9a49e2886..aae6106e0d27b7e5a7ba2cdd335f82978bf4bfd8 100644 (file)
@@ -37,9 +37,9 @@ menudefs = [
    ('_Undo', '<<undo>>'),
    ('_Redo', '<<redo>>'),
    None,
-   ('Cu_t', '<<Cut>>'),
-   ('_Copy', '<<Copy>>'),
-   ('_Paste', '<<Paste>>'),
+   ('Cu_t', '<<cut>>'),
+   ('_Copy', '<<copy>>'),
+   ('_Paste', '<<paste>>'),
    ('Select _All', '<<select-all>>'),
    None,
    ('_Find...', '<<find>>'),
@@ -58,11 +58,11 @@ menudefs = [
    ('!_Debugger', '<<toggle-debugger>>'),
    ('!_Auto-open stack viewer', '<<toggle-jit-stack-viewer>>' ),
   ]),
-# ('settings', [
-#   ('_Configure Idle...', '<<open-config-dialog>>'),
-#   None,
-#   ('Revert to _Default Settings', '<<revert-all-settings>>'),
-#  ]),
+ ('settings', [
+   ('_Configure Idle...', '<<open-config-dialog>>'),
+   None,
+   ('Revert to _Default Settings', '<<revert-all-settings>>'),
+  ]),
  ('help', [
    ('_IDLE Help...', '<<help>>'),
    ('Python _Documentation...', '<<python-docs>>'),
index bba1702e4d120b5961af0b6cc1f25bbb219b0750..25a4c24e5f33707295e9676b69300fe57fed736d 100644 (file)
@@ -233,7 +233,7 @@ class EditorWindow:
         ("edit", "_Edit"),
         ("format", "F_ormat"),
         ("run", "_Run"),
-        #("settings", "_Settings"),
+        ("settings", "_Settings"),
         ("windows", "_Windows"),
         ("help", "_Help"),
     ]