From db8c4edb080a18837e6e0bc23651f97389c1738b Mon Sep 17 00:00:00 2001 From: xiphon Date: Mon, 26 Apr 2021 11:17:59 +0000 Subject: [PATCH] main: handleTransactionConfirmed - fix 'no file specified' case --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 8c0603e8..889eafd1 100644 --- a/main.qml +++ b/main.qml @@ -938,7 +938,7 @@ ApplicationWindow { // called after user confirms transaction function handleTransactionConfirmed(fileName) { // View only wallet - we save the tx - if(viewOnly && saveTxDialog.fileUrl){ + if(viewOnly){ // No file specified - abort if(!saveTxDialog.fileUrl) { currentWallet.disposeTransaction(transaction)