diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2005-06-12 05:19:23 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2005-06-12 05:19:23 (GMT) |
commit | ca7329c9c124080b817ceb67b4e3ee7963b81d41 (patch) | |
tree | b3907b11e34de9c2bf8bc70a02e77d98819cc2fa /Lib/idlelib/EditorWindow.py | |
parent | df506ea98b1c9424634c6063e90a664ac9127164 (diff) | |
download | cpython-ca7329c9c124080b817ceb67b4e3ee7963b81d41.zip cpython-ca7329c9c124080b817ceb67b4e3ee7963b81d41.tar.gz cpython-ca7329c9c124080b817ceb67b4e3ee7963b81d41.tar.bz2 |
1. Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
the Untabify command.
2. Corrected "tab/space" Error Dialog to show correct menu for Untabify.
Patch 1196980 Jeff Shute
M EditorWindow.py
M NEWS.txt
M ScriptBinding.py
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index ef825f1..3c4585b 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -1271,7 +1271,7 @@ class EditorWindow(object): def _asktabwidth(self): return self.askinteger( "Tab width", - "Spaces per tab? (2-16)", + "Columns per tab? (2-16)", parent=self.text, initialvalue=self.indentwidth, minvalue=2, |