summaryrefslogtreecommitdiffstats
path: root/components/accounts/qml/AccountWizard.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/accounts/qml/AccountWizard.qml')
-rw-r--r--components/accounts/qml/AccountWizard.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/accounts/qml/AccountWizard.qml b/components/accounts/qml/AccountWizard.qml
index 4a11ca05..9c4adbe2 100644
--- a/components/accounts/qml/AccountWizard.qml
+++ b/components/accounts/qml/AccountWizard.qml
@@ -39,9 +39,9 @@ Kube.Popup {
39 Component.onCompleted: { 39 Component.onCompleted: {
40 //If we only have one account type we skip the selection 40 //If we only have one account type we skip the selection
41 if (root.availableAccountPlugins.length == 1) { 41 if (root.availableAccountPlugins.length == 1) {
42 stack.push(wizardPage.createObject(app, {accountType: root.availableAccountPlugins[0]})) 42 stack.push(wizardPage.createObject(stack, {accountType: root.availableAccountPlugins[0]}))
43 } else { 43 } else {
44 stack.push(mainView.createObject(app)) 44 stack.push(mainView.createObject(stack))
45 } 45 }
46 } 46 }
47 onCurrentItemChanged: { 47 onCurrentItemChanged: {
@@ -72,7 +72,7 @@ Kube.Popup {
72 delegate: Kube.Button { 72 delegate: Kube.Button {
73 Layout.fillWidth: true 73 Layout.fillWidth: true
74 text: modelData 74 text: modelData
75 onClicked: stack.push(wizardPage.createObject(app, {accountType:modelData})) 75 onClicked: stack.push(wizardPage.createObject(stack, {accountType:modelData}))
76 } 76 }
77 } 77 }
78 } 78 }