mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Increase font size in debug console (#3743)
This commit is contained in:
parent
1be94a8b04
commit
64ca90934b
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class DebugConsole(QDialog):
|
|||
font = QFont("Consolas")
|
||||
if not font.exactMatch():
|
||||
font = QFontDatabase.systemFont(QFontDatabase.SystemFont.FixedFont)
|
||||
font.setPointSize(self._text.font().pointSize())
|
||||
font.setPointSize(self._text.font().pointSize() + 1)
|
||||
self._text.setFont(font)
|
||||
self._log.setFont(font)
|
||||
|
||||
|
|
Loading…
Reference in a new issue