diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-10-04 21:33:57 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-10-04 21:33:57 (GMT) |
commit | a1dee069831c5551dc28d90d495ab5de967c17d5 (patch) | |
tree | 14c1ad7d7895b3eb4fa367915b4f04acfeac8abf /Lib/idlelib/EditorWindow.py | |
parent | c8c6065231d4595a28fe54d3b8f54cb3d222e537 (diff) | |
download | cpython-a1dee069831c5551dc28d90d495ab5de967c17d5.zip cpython-a1dee069831c5551dc28d90d495ab5de967c17d5.tar.gz cpython-a1dee069831c5551dc28d90d495ab5de967c17d5.tar.bz2 |
Apply Josh Robb's Patch
[ 617125 ] EditorWindow.py: Fix the wrap
(used 'none' instead of NONE)
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 45481ed..594a085 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -61,7 +61,7 @@ class EditorWindow: self.break_set = False self.vbar = vbar = Scrollbar(top, name='vbar') self.text_frame = text_frame = Frame(top) - self.text = text = Text(text_frame, name='text', padx=5, wrap=None, + self.text = text = Text(text_frame, name='text', padx=5, wrap='none', foreground=idleConf.GetHighlight(currentTheme, 'normal',fgBg='fg'), background=idleConf.GetHighlight(currentTheme, |