mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +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
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue