diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-09-14 02:58:07 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-09-14 02:58:07 (GMT) |
commit | 39df7c440bd2a14818f15c8c3b49fa9129597a09 (patch) | |
tree | 7369c74bc6e1567ffc3bb36fb86eaf9aa604884c | |
parent | b3705a3dd14be0176b0124a181b181b391212be0 (diff) | |
download | cpython-39df7c440bd2a14818f15c8c3b49fa9129597a09.zip cpython-39df7c440bd2a14818f15c8c3b49fa9129597a09.tar.gz cpython-39df7c440bd2a14818f15c8c3b49fa9129597a09.tar.bz2 |
MERGE DS_RPC_BRANCH into MAIN:
configDialog.py
AutoIndent merged 21Jul
-rw-r--r-- | Lib/idlelib/configDialog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index 2d05ed2..f14f81d 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -125,9 +125,9 @@ class ConfigDialog(Toplevel): labelIndentSizeTitle=Label(frameIndentSize, text='Choose indentation size :') labelSpaceNumTitle=Label(frameIndentSize,justify=LEFT, - text='when tab key inserts spaces,\nspaces per indent') + text='indent width') self.scaleSpaceNum=Scale(frameIndentSize,variable=self.spaceNum, - orient='horizontal',tickinterval=2,from_=2,to=10) + orient='horizontal',tickinterval=2,from_=2,to=16) #labeltabColsTitle=Label(frameIndentSize,justify=LEFT, # text='when tab key inserts tabs,\ncolumns per tab') #self.scaleTabCols=Scale(frameIndentSize,variable=self.tabCols, |