mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-25 12:05:54 +00:00
main: handleTransactionConfirmed - fix 'no file specified' case
This commit is contained in:
parent
02ae14fd6b
commit
db8c4edb08
1 changed files with 1 additions and 1 deletions
2
main.qml
2
main.qml
|
@ -938,7 +938,7 @@ ApplicationWindow {
|
||||||
// called after user confirms transaction
|
// called after user confirms transaction
|
||||||
function handleTransactionConfirmed(fileName) {
|
function handleTransactionConfirmed(fileName) {
|
||||||
// View only wallet - we save the tx
|
// View only wallet - we save the tx
|
||||||
if(viewOnly && saveTxDialog.fileUrl){
|
if(viewOnly){
|
||||||
// No file specified - abort
|
// No file specified - abort
|
||||||
if(!saveTxDialog.fileUrl) {
|
if(!saveTxDialog.fileUrl) {
|
||||||
currentWallet.disposeTransaction(transaction)
|
currentWallet.disposeTransaction(transaction)
|
||||||
|
|
Loading…
Reference in a new issue