diff options
Diffstat (limited to 'components/package/contents/ui/Composer.qml')
-rw-r--r-- | components/package/contents/ui/Composer.qml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/components/package/contents/ui/Composer.qml b/components/package/contents/ui/Composer.qml index aef6913b..1558ba0a 100644 --- a/components/package/contents/ui/Composer.qml +++ b/components/package/contents/ui/Composer.qml | |||
@@ -20,6 +20,8 @@ import QtQuick.Controls 1.4 | |||
20 | import QtQuick.Layouts 1.1 | 20 | import QtQuick.Layouts 1.1 |
21 | import QtQuick.Dialogs 1.0 | 21 | import QtQuick.Dialogs 1.0 |
22 | 22 | ||
23 | import org.kde.kirigami 1.0 as Kirigami | ||
24 | |||
23 | import org.kube.framework.domain 1.0 as KubeFramework | 25 | import org.kube.framework.domain 1.0 as KubeFramework |
24 | 26 | ||
25 | 27 | ||
@@ -54,7 +56,7 @@ Item { | |||
54 | 56 | ||
55 | columns: 2 | 57 | columns: 2 |
56 | 58 | ||
57 | Label { | 59 | Kirigami.Label { |
58 | text: "From" | 60 | text: "From" |
59 | } | 61 | } |
60 | 62 | ||
@@ -70,7 +72,7 @@ Item { | |||
70 | } | 72 | } |
71 | } | 73 | } |
72 | 74 | ||
73 | Label { | 75 | Kirigami.Label { |
74 | text: "To" | 76 | text: "To" |
75 | } | 77 | } |
76 | 78 | ||
@@ -112,7 +114,7 @@ Item { | |||
112 | } | 114 | } |
113 | } | 115 | } |
114 | 116 | ||
115 | Label { | 117 | Kirigami.Label { |
116 | text: "Cc" | 118 | text: "Cc" |
117 | 119 | ||
118 | visible: cc.visible | 120 | visible: cc.visible |
@@ -132,7 +134,7 @@ Item { | |||
132 | } | 134 | } |
133 | } | 135 | } |
134 | 136 | ||
135 | Label { | 137 | Kirigami.Label { |
136 | text: "Bcc" | 138 | text: "Bcc" |
137 | 139 | ||
138 | visible: bcc.visible | 140 | visible: bcc.visible |
@@ -209,7 +211,7 @@ Item { | |||
209 | 211 | ||
210 | model: composer.attachments | 212 | model: composer.attachments |
211 | 213 | ||
212 | delegate: Label { | 214 | delegate: Kirigami.Label { |
213 | id: name | 215 | id: name |
214 | 216 | ||
215 | text: modelData | 217 | text: modelData |