mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-13 11:56:32 +02:00
History: default sorting by timestamp, descending
This commit is contained in:
parent
68736ab834
commit
ff02cc0821
@ -63,6 +63,16 @@ Rectangle {
|
|||||||
fromDatePicker.currentDate = model.transactionHistory.firstDateTime
|
fromDatePicker.currentDate = model.transactionHistory.firstDateTime
|
||||||
toDatePicker.currentDate = model.transactionHistory.lastDateTime
|
toDatePicker.currentDate = model.transactionHistory.lastDateTime
|
||||||
selectedAmount.text = getSelectedAmount()
|
selectedAmount.text = getSelectedAmount()
|
||||||
|
|
||||||
|
/* Default sorting by timestamp desc */
|
||||||
|
/* Sort indicator on table header */
|
||||||
|
/* index of 'sort by blockheight' column */
|
||||||
|
header.activeSortColumn = 1
|
||||||
|
/* Sorting model */
|
||||||
|
|
||||||
|
model.sortRole = TransactionHistoryModel.TransactionTimeStampRole
|
||||||
|
model.sort(0, Qt.DescendingOrder);
|
||||||
|
// TODO: public interface for 'Header' item that will cause 'sortRequest' signal
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user