Commit 5e247b70 authored by Ned Deily's avatar Ned Deily

Issue #14962: Update text coloring in IDLE shell window after changing

options.  Patch by Roger Serwy.
parent c3ea4085
......@@ -313,6 +313,11 @@ class ModifiedColorDelegator(ColorDelegator):
"console": idleConf.GetHighlight(theme, "console"),
})
def removecolors(self):
# Don't remove shell color tags before "iomark"
for tag in self.tagdefs:
self.tag_remove(tag, "iomark", "end")
class ModifiedUndoDelegator(UndoDelegator):
"Extend base class: forbid insert/delete before the I/O mark"
......
......@@ -67,6 +67,9 @@ Core and Builtins
Library
-------
- Issue #14962: Update text coloring in IDLE shell window after changing
options. Patch by Roger Serwy.
- Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
- Issue12510: Attempting to get invalid tooltip no longer closes Idle.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment