diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-04-22 17:33:26 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-04-22 17:33:26 +0200 |
commit | db61dfe6fcbb4e316f73fe09e914493999d619e6 (patch) | |
tree | 30a4f44121098e1d5e88c430554a16f303f7bea5 | |
parent | 9113a562ed639aeeba7b4b1cdeb9768962a6af4e (diff) | |
download | kube-db61dfe6fcbb4e316f73fe09e914493999d619e6.tar.gz kube-db61dfe6fcbb4e316f73fe09e914493999d619e6.zip |
change Controls.Label to Kirigami.Label in mail list delegate
-rw-r--r-- | components/package/contents/ui/MailListView.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/package/contents/ui/MailListView.qml b/components/package/contents/ui/MailListView.qml index 291573ed..01c9b68b 100644 --- a/components/package/contents/ui/MailListView.qml +++ b/components/package/contents/ui/MailListView.qml | |||
@@ -69,17 +69,17 @@ Controls.ScrollView { | |||
69 | 69 | ||
70 | ColumnLayout { | 70 | ColumnLayout { |
71 | 71 | ||
72 | Controls.Label { | 72 | Kirigami.Label { |
73 | text: model.senderName | 73 | text: model.senderName |
74 | 74 | ||
75 | font.weight: Font.DemiBold | 75 | font.weight: Font.DemiBold |
76 | } | 76 | } |
77 | 77 | ||
78 | Controls.Label { | 78 | Kirigami.Label { |
79 | text: model.subject | 79 | text: model.subject |
80 | } | 80 | } |
81 | 81 | ||
82 | Controls.Label { | 82 | Kirigami.Label { |
83 | text: Qt.formatDateTime(model.date) | 83 | text: Qt.formatDateTime(model.date) |
84 | 84 | ||
85 | font.weight: Font.Light | 85 | font.weight: Font.Light |