[qt] Use fixed pitch font for the rpc console

Also:
* Preserve white space
* Make fixed font as large as default font
This commit is contained in:
MarcoFalke
2015-10-22 13:33:58 +02:00
parent 8daffe227b
commit 28313b83fc
7 changed files with 18 additions and 11 deletions

View File

@@ -218,7 +218,7 @@ QVariant AddressTableModel::data(const QModelIndex &index, int role) const
QFont font;
if(index.column() == Address)
{
font = GUIUtil::bitcoinAddressFont();
font = GUIUtil::fixedPitchFont();
}
return font;
}