Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka.

This commit is contained in:
Terry Jan Reedy 2014-10-12 22:58:47 -04:00
parent ed8e3a987e
commit efc7258377
1 changed files with 3 additions and 0 deletions

View File

@ -151,6 +151,9 @@ class PyShellEditorWindow(EditorWindow):
def color_breakpoint_text(self, color=True):
"Turn colorizing of breakpoint text on or off"
if self.io is None:
# possible due to update in restore_file_breaks
return
if color:
theme = idleConf.GetOption('main','Theme','name')
cfg = idleConf.GetHighlight(theme, "break")