mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
History: stay on the same page after editing description
This commit is contained in:
parent
2946127ed7
commit
417eaeae28
1 changed files with 9 additions and 6 deletions
|
@ -1248,7 +1248,7 @@ Rectangle {
|
||||||
if(res[i].state === 'copyable_address') (address ? root.toClipboard(address) : root.toClipboard(addressField.text));
|
if(res[i].state === 'copyable_address') (address ? root.toClipboard(address) : root.toClipboard(addressField.text));
|
||||||
if(res[i].state === 'copyable_receiving_address') root.toClipboard(currentWallet.address(subaddrAccount, subaddrIndex));
|
if(res[i].state === 'copyable_receiving_address') root.toClipboard(currentWallet.address(subaddrAccount, subaddrIndex));
|
||||||
if(res[i].state === 'copyable_txkey') root.getTxKey(hash, res[i]);
|
if(res[i].state === 'copyable_txkey') root.getTxKey(hash, res[i]);
|
||||||
if(res[i].state === 'set_tx_note') root.editDescription(hash, tx_note);
|
if(res[i].state === 'set_tx_note') root.editDescription(hash, tx_note, root.txPage);
|
||||||
if(res[i].state === 'details') root.showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex, dateTime, displayAmount, isout);
|
if(res[i].state === 'details') root.showTxDetails(hash, paymentId, destinations, subaddrAccount, subaddrIndex, dateTime, displayAmount, isout);
|
||||||
if(res[i].state === 'proof') root.showTxProof(hash, paymentId, destinations, subaddrAccount, subaddrIndex);
|
if(res[i].state === 'proof') root.showTxProof(hash, paymentId, destinations, subaddrAccount, subaddrIndex);
|
||||||
doCollapse = false;
|
doCollapse = false;
|
||||||
|
@ -1409,7 +1409,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateFilter(){
|
function updateFilter(currentPage){
|
||||||
// applying filters
|
// applying filters
|
||||||
root.txData = JSON.parse(JSON.stringify(root.txModelData)); // deepcopy
|
root.txData = JSON.parse(JSON.stringify(root.txModelData)); // deepcopy
|
||||||
|
|
||||||
|
@ -1459,6 +1459,9 @@ Rectangle {
|
||||||
|
|
||||||
root.updateSort();
|
root.updateSort();
|
||||||
root.updateDisplay(root.txOffset, root.txMax);
|
root.updateDisplay(root.txOffset, root.txMax);
|
||||||
|
if (currentPage) {
|
||||||
|
root.paginationJump(parseInt(currentPage));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateSort(){
|
function updateSort(){
|
||||||
|
@ -1597,20 +1600,20 @@ Rectangle {
|
||||||
root.txCount = root.txData.length;
|
root.txCount = root.txData.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
function update() {
|
function update(currentPage) {
|
||||||
// handle outside mutation of tx model; incoming/outgoing funds or new blocks. Update table.
|
// handle outside mutation of tx model; incoming/outgoing funds or new blocks. Update table.
|
||||||
currentWallet.history.refresh(currentWallet.currentSubaddressAccount);
|
currentWallet.history.refresh(currentWallet.currentSubaddressAccount);
|
||||||
|
|
||||||
root.updateTransactionsFromModel();
|
root.updateTransactionsFromModel();
|
||||||
root.updateFilter();
|
root.updateFilter(currentPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
function editDescription(_hash, _tx_note){
|
function editDescription(_hash, _tx_note, currentPage){
|
||||||
inputDialog.labelText = qsTr("Set description:") + translationManager.emptyString;
|
inputDialog.labelText = qsTr("Set description:") + translationManager.emptyString;
|
||||||
inputDialog.onAcceptedCallback = function() {
|
inputDialog.onAcceptedCallback = function() {
|
||||||
appWindow.currentWallet.setUserNote(_hash, inputDialog.inputText);
|
appWindow.currentWallet.setUserNote(_hash, inputDialog.inputText);
|
||||||
appWindow.showStatusMessage(qsTr("Updated description."),3);
|
appWindow.showStatusMessage(qsTr("Updated description."),3);
|
||||||
root.update();
|
root.update(currentPage);
|
||||||
}
|
}
|
||||||
inputDialog.onRejectedCallback = null;
|
inputDialog.onRejectedCallback = null;
|
||||||
inputDialog.open(_tx_note);
|
inputDialog.open(_tx_note);
|
||||||
|
|
Loading…
Reference in a new issue