qml: destroy dialogs instantiated from Send on close
This commit is contained in:
@@ -247,12 +247,15 @@ Pane {
|
|||||||
wallet: Daemon.currentWallet
|
wallet: Daemon.currentWallet
|
||||||
canRbf: true
|
canRbf: true
|
||||||
}
|
}
|
||||||
|
onClosed: destroy()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
id: lightningPaymentProgressDialog
|
id: lightningPaymentProgressDialog
|
||||||
LightningPaymentProgressDialog {}
|
LightningPaymentProgressDialog {
|
||||||
|
onClosed: destroy()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
@@ -279,6 +282,7 @@ Pane {
|
|||||||
Daemon.currentWallet.pay_lightning_invoice(invoice.key)
|
Daemon.currentWallet.pay_lightning_invoice(invoice.key)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
onClosed: destroy()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user