diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-06-18 16:25:30 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-06-18 16:25:30 +0200 |
commit | 4b23da770d606e94ef07a95f726af036ac96a94e (patch) | |
tree | e8f19ef70c5293685cad123aff85143579319f6b /components/package/contents/ui/AccountSwitcher.qml | |
parent | 72e9b822a162d54e68e57ba40a3076892ab10caf (diff) | |
download | kube-4b23da770d606e94ef07a95f726af036ac96a94e.tar.gz kube-4b23da770d606e94ef07a95f726af036ac96a94e.zip |
load account config UI in account config dialog
Diffstat (limited to 'components/package/contents/ui/AccountSwitcher.qml')
-rw-r--r-- | components/package/contents/ui/AccountSwitcher.qml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/components/package/contents/ui/AccountSwitcher.qml b/components/package/contents/ui/AccountSwitcher.qml index da878acf..6a9d2deb 100644 --- a/components/package/contents/ui/AccountSwitcher.qml +++ b/components/package/contents/ui/AccountSwitcher.qml | |||
@@ -165,16 +165,20 @@ Button { | |||
165 | onClicked: { | 165 | onClicked: { |
166 | editAccountComponent.createObject(app) | 166 | editAccountComponent.createObject(app) |
167 | } | 167 | } |
168 | } | ||
169 | } | ||
170 | } | ||
171 | 168 | ||
172 | Component { | 169 | Component { |
173 | id: editAccountComponent | 170 | id: editAccountComponent |
171 | |||
172 | KubeComponents.EditAccountDialog { | ||
173 | id: editAccount | ||
174 | 174 | ||
175 | KubeComponents.EditAccountDialog { | 175 | anchors.fill: parent |
176 | id: editAccount | 176 | |
177 | anchors.fill: parent | 177 | //accountId: accountFactory.accountId |
178 | uiSource: accountFactory.uiPath | ||
179 | } | ||
180 | } | ||
181 | } | ||
178 | } | 182 | } |
179 | } | 183 | } |
180 | } | 184 | } |