Skip to content

Commit 396ea3e

Browse files
committed
replace Courier font with Courier New to to speed up application start
1 parent 5834759 commit 396ea3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/gui/config_dialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(self, parent=None):
2626
self.resize(self.initial_width, self.initial_height)
2727

2828
self.text_box = QPlainTextEdit(self)
29-
font = QtGui.QFont("Courier")
29+
font = QtGui.QFont("Courier New")
3030
font.setPointSize(14)
3131
self.text_box.setFont(font)
3232
self.text_box.setStyleSheet("color: black; background-color: white;")

0 commit comments

Comments
 (0)