mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-21 14:38:44 +00:00
History: use monospace for txid column
This commit is contained in:
parent
2bba5c4787
commit
86e81ca3fc
1 changed files with 8 additions and 0 deletions
|
@ -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) {
|
if (!found) {
|
||||||
|
|
Loading…
Reference in a new issue