Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka.
This commit is contained in:
parent
c0dc65ef8d
commit
08da46e10f
|
@ -156,6 +156,9 @@ class PyShellEditorWindow(EditorWindow):
|
||||||
|
|
||||||
def color_breakpoint_text(self, color=True):
|
def color_breakpoint_text(self, color=True):
|
||||||
"Turn colorizing of breakpoint text on or off"
|
"Turn colorizing of breakpoint text on or off"
|
||||||
|
if self.io is None:
|
||||||
|
# possible due to update in restore_file_breaks
|
||||||
|
return
|
||||||
if color:
|
if color:
|
||||||
theme = idleConf.GetOption('main','Theme','name')
|
theme = idleConf.GetOption('main','Theme','name')
|
||||||
cfg = idleConf.GetHighlight(theme, "break")
|
cfg = idleConf.GetHighlight(theme, "break")
|
||||||
|
|
Loading…
Reference in New Issue