diff --git a/src/model/TransactionHistoryModel.cpp b/src/model/TransactionHistoryModel.cpp index 0374cf1..2265a3e 100644 --- a/src/model/TransactionHistoryModel.cpp +++ b/src/model/TransactionHistoryModel.cpp @@ -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) {