1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-25 10:47:19 +01:00

merchant: fix payment tracker sorting

If the History page wasn't opened once
before opening the Merchant page,
sorting was messed up.
This commit is contained in:
selsta 2019-01-10 11:08:57 +01:00
parent 2d1882108f
commit aa82615374

View File

@ -507,6 +507,8 @@ TransactionHistorySortFilterModel *Wallet::historyModel() const
m_historyModel->setTransactionHistory(this->history());
m_historySortFilterModel = new TransactionHistorySortFilterModel(w);
m_historySortFilterModel->setSourceModel(m_historyModel);
m_historySortFilterModel->setSortRole(TransactionHistoryModel::TransactionBlockHeightRole);
m_historySortFilterModel->sort(0, Qt::DescendingOrder);
}
return m_historySortFilterModel;