diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-09 03:33:16 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-09 03:33:16 (GMT) |
commit | da26cca1cef111282e4be83af0994305c6218ade (patch) | |
tree | c84b44007c97d73a7fa5ecffce670129494cc177 /Lib/idlelib/ColorDelegator.py | |
parent | 5a794c16d98a12f75b728ff902c410f10f93770f (diff) | |
download | cpython-da26cca1cef111282e4be83af0994305c6218ade.zip cpython-da26cca1cef111282e4be83af0994305c6218ade.tar.gz cpython-da26cca1cef111282e4be83af0994305c6218ade.tar.bz2 |
Issue #14105: Stop removing breakpoints from Idle editors.
Move BREAK tag configuration to PyShellEditorWindow.
Diffstat (limited to 'Lib/idlelib/ColorDelegator.py')
-rw-r--r-- | Lib/idlelib/ColorDelegator.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/idlelib/ColorDelegator.py b/Lib/idlelib/ColorDelegator.py index 424755f..729dec0 100644 --- a/Lib/idlelib/ColorDelegator.py +++ b/Lib/idlelib/ColorDelegator.py @@ -72,7 +72,6 @@ class ColorDelegator(Delegator): "DEFINITION": idleConf.GetHighlight(theme, "definition"), "SYNC": {'background':None,'foreground':None}, "TODO": {'background':None,'foreground':None}, - "BREAK": idleConf.GetHighlight(theme, "break"), "ERROR": idleConf.GetHighlight(theme, "error"), # The following is used by ReplaceDialog: "hit": idleConf.GetHighlight(theme, "hit"), |