Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10544 from AdmiralCurtiss/default-font-size-worka…
…round

Qt: Set font size for default debug font.
  • Loading branch information
JosJuice committed Apr 7, 2022
2 parents 17b17e3 + 1ad7aac commit 6a326a9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/DolphinQt/Settings.cpp
Expand Up @@ -606,6 +606,7 @@ void Settings::SetDebugFont(QFont font)
QFont Settings::GetDebugFont() const
{
QFont default_font = QFont(QFontDatabase::systemFont(QFontDatabase::FixedFont).family());
default_font.setPointSizeF(9.0);

return GetQSettings().value(QStringLiteral("debugger/font"), default_font).value<QFont>();
}
Expand Down

0 comments on commit 6a326a9

Please sign in to comment.