diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-11-03 23:26:40 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-11-03 23:26:40 +0300 |
| commit | f38c6f4307600d4a17e3352e9f641f9af89ffeb7 (patch) | |
| tree | 3c24ae4acdd23fa41ea99030708a6bbe9dddd043 | |
| parent | 550087f4a14df7e5b4ff6592be9e9cd64162b801 (diff) | |
| download | monzero-gui-f38c6f4307600d4a17e3352e9f641f9af89ffeb7.tar.gz monzero-gui-f38c6f4307600d4a17e3352e9f641f9af89ffeb7.tar.xz monzero-gui-f38c6f4307600d4a17e3352e9f641f9af89ffeb7.zip | |
History: sort by date actually sorts by datetime
| -rw-r--r-- | pages/History.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/History.qml b/pages/History.qml index f6233678..bf71791a 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -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; |
