Skip to content

Commit

Permalink
replace Courier font with Courier New to to speed up application start
Browse files Browse the repository at this point in the history
  • Loading branch information
redvox committed Apr 3, 2024
1 parent 5834759 commit 396ea3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/gui/config_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self, parent=None):
self.resize(self.initial_width, self.initial_height)

self.text_box = QPlainTextEdit(self)
font = QtGui.QFont("Courier")
font = QtGui.QFont("Courier New")
font.setPointSize(14)
self.text_box.setFont(font)
self.text_box.setStyleSheet("color: black; background-color: white;")
Expand Down

0 comments on commit 396ea3e

Please sign in to comment.