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/PyShell.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/PyShell.py')
-rwxr-xr-x | Lib/idlelib/PyShell.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index c23b62a..8656927 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -138,6 +138,7 @@ class PyShellEditorWindow(EditorWindow): self.io.set_filename_change_hook(filename_changed_hook) if self.io.filename: self.restore_file_breaks() + self.color_breakpoint_text() rmenu_specs = [ ("Cut", "<<cut>>", "rmenu_check_cut"), @@ -148,6 +149,15 @@ class PyShellEditorWindow(EditorWindow): ("Clear Breakpoint", "<<clear-breakpoint-here>>", None) ] + def color_breakpoint_text(self, color=True): + "Turn colorizing of breakpoint text on or off" + if color: + theme = idleConf.GetOption('main','Theme','name') + cfg = idleConf.GetHighlight(theme, "break") + else: + cfg = {'foreground': '', 'background': ''} + self.text.tag_config('BREAK', cfg) + def set_breakpoint(self, lineno): text = self.text filename = self.io.filename |