diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-08-18 17:23:43 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-08-18 17:23:43 +0200 |
commit | eaf4929e142102715e114683db6b3a379624aa76 (patch) | |
tree | ee99120b59e453cebad952ccf4b0302b31190e63 /components/accounts/qml/AccountWizard.qml | |
parent | c7fe1d5ea43e7b47bc21eade4914623be935219b (diff) | |
download | kube-eaf4929e142102715e114683db6b3a379624aa76.tar.gz kube-eaf4929e142102715e114683db6b3a379624aa76.zip |
Cleanup
Diffstat (limited to 'components/accounts/qml/AccountWizard.qml')
-rw-r--r-- | components/accounts/qml/AccountWizard.qml | 6 |
1 files changed, 3 insertions, 3 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 | ||
19 | import QtQuick 2.7 | 19 | import QtQuick 2.7 |
20 | import QtQuick.Layouts 1.1 | 20 | import QtQuick.Layouts 1.1 |
21 | import QtQuick.Controls 2.0 as Controls2 | 21 | import QtQuick.Controls 2 |
22 | import org.kube.framework 1.0 as Kube | 22 | import org.kube.framework 1.0 as Kube |
23 | 23 | ||
24 | Kube.Popup { | 24 | Kube.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: { |