[qt] rpcconsole: Scale monospace font to 95%
This commit is contained in:
parent
28313b83fc
commit
268b79ef0c
1 changed files with 2 additions and 2 deletions
|
@ -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 { }"
|
||||
|
|
Loading…
Reference in a new issue