From a1dee069831c5551dc28d90d495ab5de967c17d5 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Fri, 4 Oct 2002 21:33:57 +0000 Subject: Apply Josh Robb's Patch [ 617125 ] EditorWindow.py: Fix the wrap (used 'none' instead of NONE) --- Lib/idlelib/EditorWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/EditorWindow.py') diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 45481ed53f5..594a08580ff 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, -- cgit v1.2.3