Skip to content

Commit 7237a49

Browse files
committed
fix PyQt6 for Windows
1 parent 8d9cfe9 commit 7237a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

laps-client/laps_client/laps_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def InitUI(self):
398398

399399
# set easy readable font
400400
if(self.PLATFORM == 'win32'):
401-
self.textBoxFont = QFont('Consolas', 14)
401+
self.textBoxFont = QtGui.QFont('Consolas', 14)
402402
self.textBoxFont.setBold(True)
403403
else:
404404
self.textBoxFont = QtGui.QFontDatabase.systemFont(QtGui.QFontDatabase.SystemFont.FixedFont)

0 commit comments

Comments
 (0)