From f38c6f4307600d4a17e3352e9f641f9af89ffeb7 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Thu, 3 Nov 2016 23:26:40 +0300 Subject: [PATCH] History: sort by date actually sorts by datetime --- pages/History.qml | 4 ++-- 1 file 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;