mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +00:00
Apply Josh Robb's Patch
[ 617125 ] EditorWindow.py: Fix the wrap (used 'none' instead of NONE)
This commit is contained in:
parent
c8c6065231
commit
a1dee06983
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue