diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-01-17 17:55:53 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-01-17 19:28:49 +0100 |
commit | fa6a59dd397e62e850fc57df05cd6d117fbdcd82 (patch) | |
tree | 807485a00bdffcc82480c6807ad33bb31098c15d /src/qt/rpcconsole.cpp | |
parent | 3cd836c1d855b92e7c73ab31979f471c4f8dad68 (diff) |
[qt] Windows: Make rpcconsole monospace font larger
Diffstat (limited to 'src/qt/rpcconsole.cpp')
-rw-r--r-- | src/qt/rpcconsole.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 30e551de19..cc377c4ff9 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -472,7 +472,11 @@ void RPCConsole::clear() // Set default style sheet QFontInfo fixedFontInfo(GUIUtil::fixedPitchFont()); // Try to make fixed font adequately large on different OS +#ifdef WIN32 + QString ptSize = QString("%1pt").arg(QFontInfo(QFont()).pointSize() * 10 / 8); +#else QString ptSize = QString("%1pt").arg(QFontInfo(QFont()).pointSize() * 8.5 / 9); +#endif ui->messagesWidget->document()->setDefaultStyleSheet( QString( "table { }" |