diff options
author | Guido van Rossum <guido@python.org> | 1998-11-27 03:19:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-11-27 03:19:07 (GMT) |
commit | b5eed0328f79019d57ced87fe95ca24c18792443 (patch) | |
tree | d1997b03ed1c3495bbfaca0d54cad76e3c07fe63 /Tools/idle/FileList.py | |
parent | 6e0a4136936c242da266a8ff7614f4861cadcb74 (diff) | |
download | cpython-b5eed0328f79019d57ced87fe95ca24c18792443.zip cpython-b5eed0328f79019d57ced87fe95ca24c18792443.tar.gz cpython-b5eed0328f79019d57ced87fe95ca24c18792443.tar.bz2 |
Support underlining of menu labels
Diffstat (limited to 'Tools/idle/FileList.py')
-rw-r--r-- | Tools/idle/FileList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/FileList.py b/Tools/idle/FileList.py index 3895399..bebf7427 100644 --- a/Tools/idle/FileList.py +++ b/Tools/idle/FileList.py @@ -21,7 +21,7 @@ class MultiEditorWindow(EditorWindow): # Override menu bar specs menu_specs = EditorWindow.menu_specs[:] - menu_specs.insert(len(menu_specs)-1, ("windows", "Windows")) + menu_specs.insert(len(menu_specs)-1, ("windows", "_Windows")) def __init__(self, flist, filename, key): self.flist = flist |