diff options
| author | MarcoFalke <[email protected]> | 2016-01-17 17:55:53 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-01-17 19:28:49 +0100 |
| commit | fa6a59dd397e62e850fc57df05cd6d117fbdcd82 (patch) | |
| tree | 807485a00bdffcc82480c6807ad33bb31098c15d /src | |
| parent | Merge pull request #7158 (diff) | |
| download | discoin-fa6a59dd397e62e850fc57df05cd6d117fbdcd82.tar.xz discoin-fa6a59dd397e62e850fc57df05cd6d117fbdcd82.zip | |
[qt] Windows: Make rpcconsole monospace font larger
Diffstat (limited to 'src')
| -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 30e551de1..cc377c4ff 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 { }" |