history: show pending on top

pull/2/head
Jaquee 8 years ago
parent d8f9e7360f
commit f012e4d968
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

@ -239,7 +239,7 @@ ListView {
font.pixelSize: 13
font.letterSpacing: -1
color: "#545454"
text: blockHeight
text: (typeof blockHeight != "undefined")? blockHeight : qsTr("Pending") + translationManager.emptyString
}
}

@ -75,7 +75,11 @@ QVariant TransactionHistoryModel::data(const QModelIndex &index, int role) const
result = tInfo->fee();
break;
case TransactionBlockHeightRole:
result = tInfo->blockHeight();
// Use NULL QVariant for transactions without height.
// Forces them to be displayed at top when sorted by blockHeight.
if (tInfo->blockHeight() != 0) {
result = tInfo->blockHeight();
}
break;
case TransactionHashRole:
result = tInfo->hash();