[qt] rpcconsole: Scale monospace font to 95%

This commit is contained in:
MarcoFalke 2015-11-03 11:58:04 +01:00
parent 28313b83fc
commit 268b79ef0c
1 changed files with 2 additions and 2 deletions

View File

@ -463,8 +463,8 @@ void RPCConsole::clear()
// Set default style sheet
QFontInfo fixedFontInfo(GUIUtil::fixedPitchFont());
// Try to make font equally large on different OS.
QString ptSize = QString("%1pt").arg(QFontInfo(QFont()).pointSize());
// Try to make fixed font adequately large on different OS
QString ptSize = QString("%1pt").arg(QFontInfo(QFont()).pointSize() * 8.5 / 9);
ui->messagesWidget->document()->setDefaultStyleSheet(
QString(
"table { }"