summaryrefslogtreecommitdiffstats
path: root/components/accounts/contents/ui/AccountWizardPage.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-09-21 19:00:31 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-09-22 10:26:27 +0200
commit1f1ffbceb15dbc9e8a7ff567666a026ef221039e (patch)
treeceeda47ff75a22e14c9f4b89a01219e72dbe7596 /components/accounts/contents/ui/AccountWizardPage.qml
parentd49fcec005b7c2c6a1a1453648d99fde66c494e2 (diff)
downloadkube-1f1ffbceb15dbc9e8a7ff567666a026ef221039e.tar.gz
kube-1f1ffbceb15dbc9e8a7ff567666a026ef221039e.zip
Autofocus textedit
Diffstat (limited to 'components/accounts/contents/ui/AccountWizardPage.qml')
-rw-r--r--components/accounts/contents/ui/AccountWizardPage.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/accounts/contents/ui/AccountWizardPage.qml b/components/accounts/contents/ui/AccountWizardPage.qml
index f7885ce4..74decf1f 100644
--- a/components/accounts/contents/ui/AccountWizardPage.qml
+++ b/components/accounts/contents/ui/AccountWizardPage.qml
@@ -24,7 +24,7 @@ import QtQuick.Controls 2.0 as Controls2
24import org.kube.framework 1.0 as Kube 24import org.kube.framework 1.0 as Kube
25 25
26 26
27Item { 27FocusScope {
28 id: root 28 id: root
29 property string accountType 29 property string accountType
30 signal done() 30 signal done()
@@ -88,6 +88,7 @@ Item {
88 Loader { 88 Loader {
89 id: loader 89 id: loader
90 anchors.fill: parent 90 anchors.fill: parent
91 focus: true
91 source: accountFactory.uiPath 92 source: accountFactory.uiPath
92 } 93 }
93 } 94 }