mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
History: sort by date actually sorts by datetime
This commit is contained in:
parent
550087f4a1
commit
f38c6f4307
1 changed files with 2 additions and 2 deletions
|
@ -394,8 +394,8 @@ Rectangle {
|
|||
model.sortRole = TransactionHistoryModel.TransactionPaymentIdRole
|
||||
break;
|
||||
case 1:
|
||||
// Date;
|
||||
model.sortRole = TransactionHistoryModel.TransactionDateRole
|
||||
// Date (actually sort by timestamp as we want to have transactions sorted within one day as well);
|
||||
model.sortRole = TransactionHistoryModel.TransactionTimeStampRole
|
||||
break;
|
||||
case 2:
|
||||
// BlockHeight;
|
||||
|
|
Loading…
Reference in a new issue