qml: properly delete wizard components after use. fixes #8357
This commit is contained in:
@@ -304,13 +304,17 @@ ApplicationWindow
|
||||
property alias newWalletWizard: _newWalletWizard
|
||||
Component {
|
||||
id: _newWalletWizard
|
||||
NewWalletWizard { }
|
||||
NewWalletWizard {
|
||||
onClosed: destroy()
|
||||
}
|
||||
}
|
||||
|
||||
property alias serverConnectWizard: _serverConnectWizard
|
||||
Component {
|
||||
id: _serverConnectWizard
|
||||
ServerConnectWizard { }
|
||||
ServerConnectWizard {
|
||||
onClosed: destroy()
|
||||
}
|
||||
}
|
||||
|
||||
property alias messageDialog: _messageDialog
|
||||
|
||||
Reference in New Issue
Block a user