diff options
Diffstat (limited to 'framework/qml/EditAccount.qml')
-rw-r--r-- | framework/qml/EditAccount.qml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/framework/qml/EditAccount.qml b/framework/qml/EditAccount.qml index 8618ec91..a9a8c1ad 100644 --- a/framework/qml/EditAccount.qml +++ b/framework/qml/EditAccount.qml | |||
@@ -22,15 +22,14 @@ import QtQuick.Layouts 1.1 | |||
22 | import QtQuick.Controls 1.4 as Controls | 22 | import QtQuick.Controls 1.4 as Controls |
23 | import QtQuick.Controls 2.0 as Controls2 | 23 | import QtQuick.Controls 2.0 as Controls2 |
24 | import org.kde.kirigami 1.0 as Kirigami | 24 | import org.kde.kirigami 1.0 as Kirigami |
25 | import org.kube.framework 1.0 as Kube | ||
25 | 26 | ||
26 | import org.kube.framework.accounts 1.0 as KubeAccounts | ||
27 | import org.kube.components.theme 1.0 as KubeTheme | ||
28 | 27 | ||
29 | Item { | 28 | Item { |
30 | id: root | 29 | id: root |
31 | property string accountId | 30 | property string accountId |
32 | 31 | ||
33 | KubeAccounts.AccountFactory { | 32 | Kube.AccountFactory { |
34 | id: accountFactory | 33 | id: accountFactory |
35 | accountId: root.accountId | 34 | accountId: root.accountId |
36 | } | 35 | } |
@@ -45,7 +44,7 @@ Item { | |||
45 | Kirigami.Heading { | 44 | Kirigami.Heading { |
46 | id: heading | 45 | id: heading |
47 | text: loader.item.heading | 46 | text: loader.item.heading |
48 | color: KubeTheme.Colors.highlightColor | 47 | color: Kube.Colors.highlightColor |
49 | } | 48 | } |
50 | 49 | ||
51 | Kirigami.Label { | 50 | Kirigami.Label { |
@@ -58,7 +57,7 @@ Item { | |||
58 | 57 | ||
59 | width: parent.width | 58 | width: parent.width |
60 | text: loader.item.subheadline | 59 | text: loader.item.subheadline |
61 | color: KubeTheme.Colors.disabledTextColor | 60 | color: Kube.Colors.disabledTextColor |
62 | wrapMode: Text.Wrap | 61 | wrapMode: Text.Wrap |
63 | } | 62 | } |
64 | 63 | ||