summaryrefslogtreecommitdiffstats
path: root/components/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'components/accounts')
-rw-r--r--components/accounts/qml/AccountWizard.qml6
-rw-r--r--components/accounts/qml/AccountWizardPage.qml4
2 files changed, 5 insertions, 5 deletions
diff --git a/components/accounts/qml/AccountWizard.qml b/components/accounts/qml/AccountWizard.qml
index eb259aa6..7e67a148 100644
--- a/components/accounts/qml/AccountWizard.qml
+++ b/components/accounts/qml/AccountWizard.qml
@@ -18,7 +18,7 @@
18 18
19import QtQuick 2.7 19import QtQuick 2.7
20import QtQuick.Layouts 1.1 20import QtQuick.Layouts 1.1
21import QtQuick.Controls 2.0 as Controls2 21import QtQuick.Controls 2
22import org.kube.framework 1.0 as Kube 22import org.kube.framework 1.0 as Kube
23 23
24Kube.Popup { 24Kube.Popup {
@@ -29,11 +29,11 @@ Kube.Popup {
29 property var availableAccountPlugins: [] 29 property var availableAccountPlugins: []
30 30
31 modal: true 31 modal: true
32 closePolicy: requireSetup ? Controls2.Popup.NoAutoClose : Controls2.Popup.CloseOnEscape | Controls2.Popup.CloseOnPressOutside 32 closePolicy: requireSetup ? Popup.NoAutoClose : Popup.CloseOnEscape | Popup.CloseOnPressOutside
33 33
34 clip: true 34 clip: true
35 35
36 Controls2.StackView { 36 StackView {
37 id: stack 37 id: stack
38 anchors.fill: parent 38 anchors.fill: parent
39 Component.onCompleted: { 39 Component.onCompleted: {
diff --git a/components/accounts/qml/AccountWizardPage.qml b/components/accounts/qml/AccountWizardPage.qml
index 66fae82a..44bd5b38 100644
--- a/components/accounts/qml/AccountWizardPage.qml
+++ b/components/accounts/qml/AccountWizardPage.qml
@@ -19,7 +19,7 @@
19 19
20import QtQuick 2.7 20import QtQuick 2.7
21import QtQuick.Layouts 1.1 21import QtQuick.Layouts 1.1
22import QtQuick.Controls 2.0 as Controls2 22import QtQuick.Controls 2
23import org.kube.framework 1.0 as Kube 23import org.kube.framework 1.0 as Kube
24 24
25 25
@@ -28,7 +28,7 @@ FocusScope {
28 property string accountType 28 property string accountType
29 signal done() 29 signal done()
30 30
31 property bool isFirstView: root.Controls2.StackView.index == 0 31 property bool isFirstView: root.StackView.index == 0
32 property bool requireSetup: false 32 property bool requireSetup: false
33 33
34 function save() { 34 function save() {