Skip to content

Commit

Permalink
Don't set the default theme to dark when instantiated as issue with t…
Browse files Browse the repository at this point in the history
…ext colours was still present but intermittent. More work is required to find the source of this issue.
  • Loading branch information
hreikin committed Apr 16, 2022
1 parent a067907 commit 2ca2a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tkintermd/frame.py
Expand Up @@ -165,7 +165,7 @@ def __init__(self, master, **kwargs):
# Set Pygments syntax highlighting style.
self.lexer = Lexer()
self.syntax_highlighting_tags = self.load_style("stata")
self.syntax_highlighting_tags = self.load_style("material")
# self.syntax_highlighting_tags = self.load_style("material")
# Default markdown string.
default_text = constants.default_md_string
self.text_area.insert(0.0, default_text)
Expand Down

0 comments on commit 2ca2a7f

Please sign in to comment.