mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
History: change default dates of "Date from" and "Date to" DatePicker components
This commit is contained in:
parent
2946127ed7
commit
1f8aa0dff0
1 changed files with 9 additions and 2 deletions
|
@ -1384,7 +1384,7 @@ Rectangle {
|
|||
}
|
||||
|
||||
if (typeof root.model !== 'undefined' && root.model != null) {
|
||||
toDatePicker.currentDate = root.model.transactionHistory.lastDateTime
|
||||
toDatePicker.currentDate = new Date(); //today
|
||||
}
|
||||
|
||||
// extract from model, create JS array of txs
|
||||
|
@ -1762,8 +1762,15 @@ Rectangle {
|
|||
root.model = appWindow.currentWallet.historyModel;
|
||||
root.model.sortRole = TransactionHistoryModel.TransactionBlockHeightRole
|
||||
root.model.sort(0, Qt.DescendingOrder);
|
||||
var count = root.model.rowCount()
|
||||
if (count > 0) {
|
||||
//date of the first transaction
|
||||
fromDatePicker.currentDate = root.model.data(root.model.index((count - 1), 0), TransactionHistoryModel.TransactionDateRole);
|
||||
} else {
|
||||
//date of monero birth (2014-04-18)
|
||||
fromDatePicker.currentDate = model.transactionHistory.firstDateTime
|
||||
}
|
||||
}
|
||||
|
||||
root.reset();
|
||||
root.refresh();
|
||||
|
|
Loading…
Reference in a new issue