diff options
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 65ffe54..546fa9d 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -510,6 +510,8 @@ class EditorWindow: if self.color: self.color = self.ColorDelegator() self.per.insertfilter(self.color) + theme = idleConf.GetOption('main','Theme','name') + self.text.config(idleConf.GetHighlight(theme, "normal")) def ResetFont(self): "Update the text widgets' font if it is changed" |