Skip to content

Commit

Permalink
Merge pull request #36 from sbrugman/patch-3
Browse files Browse the repository at this point in the history
fix: specific mono fallback font
  • Loading branch information
parrt authored Sep 27, 2021
2 parents f534163 + 18ebe9c commit 5344c41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsensor/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class clarify:
nesting = 0

def __init__(self,
fontname='Consolas', fontsize=13,
fontname=('Consolas', 'DejaVu Sans Mono'), fontsize=13,
dimfontname='Arial', dimfontsize=9, matrixcolor="#cfe2d4",
vectorcolor="#fefecd", char_sep_scale=1.8, fontcolor='#444443',
underline_color='#C2C2C2', ignored_color='#B4B4B4', error_op_color='#A40227',
Expand Down Expand Up @@ -155,7 +155,7 @@ def __exit__(self, exc_type, exc_value, exc_traceback):

class explain:
def __init__(self,
fontname='Consolas', fontsize=13,
fontname=('Consolas', 'DejaVu Sans Mono'), fontsize=13,
dimfontname='Arial', dimfontsize=9, matrixcolor="#cfe2d4",
vectorcolor="#fefecd", char_sep_scale=1.8, fontcolor='#444443',
underline_color='#C2C2C2', ignored_color='#B4B4B4', error_op_color='#A40227',
Expand Down

0 comments on commit 5344c41

Please sign in to comment.