Commit a1dee069 authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

Apply Josh Robb's Patch

[ 617125 ] EditorWindow.py: Fix the wrap
(used 'none' instead of NONE)
parent c8c60652
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment