mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-22 02:34:30 +00:00
Accounts: align balance right
This commit is contained in:
parent
7b367d28e2
commit
ecf08db2ec
1 changed files with 5 additions and 0 deletions
|
@ -57,6 +57,11 @@ QVariant SubaddressAccountModel::data(const QModelIndex &index, int role) const
|
|||
result = ModelUtils::getMonospaceFont();
|
||||
}
|
||||
}
|
||||
else if (role == Qt::TextAlignmentRole) {
|
||||
if (index.column() == Column::Balance || index.column() == Column::UnlockedBalance) {
|
||||
result = Qt::AlignRight;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (!found) {
|
||||
|
|
Loading…
Reference in a new issue