aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorJonas Schnelli <dev@jonasschnelli.ch>2016-01-22 09:47:30 +0100
committerJonas Schnelli <dev@jonasschnelli.ch>2016-01-22 09:47:51 +0100
commitf221fc1887def9dfb5a3cd7cfa2d27accd35a1d3 (patch)
treeef648109b7146584f0ee28b2b5ebdec571c68ed0 /src/qt
parent6f7841d5455832bceeb0b1375baef772099d5595 (diff)
parentfa6a59dd397e62e850fc57df05cd6d117fbdcd82 (diff)
downloadbitcoin-f221fc1887def9dfb5a3cd7cfa2d27accd35a1d3.tar.xz
Merge #7364: [qt] Windows: Make rpcconsole monospace font larger
fa6a59d [qt] Windows: Make rpcconsole monospace font larger (MarcoFalke)
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/rpcconsole.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 7178bc00e6..fb36020317 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -474,7 +474,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 { }"