History: use monospace for txid column

This commit is contained in:
tobtoht 2021-07-08 13:09:49 +02:00
parent 2bba5c4787
commit 86e81ca3fc
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -123,6 +123,14 @@ QVariant TransactionHistoryModel::data(const QModelIndex &index, int role) const
}
}
}
else if (role == Qt::FontRole) {
switch(index.column()) {
case Column::TxID:
{
result = ModelUtils::getMonospaceFont();
}
}
}
});
if (!found) {