diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-04-25 01:52:04 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-04-25 01:52:04 +0200 |
commit | 0107114894b1605febd43dfc8aed4f8936331520 (patch) | |
tree | 6280b0f9091a1a4feadf217595016569c15cf599 /components/package | |
parent | 1974c42f9372b09f7b9c6a85fec01e8dfab15092 (diff) | |
download | kube-0107114894b1605febd43dfc8aed4f8936331520.tar.gz kube-0107114894b1605febd43dfc8aed4f8936331520.zip |
maillistdelegat: change renderType to native text rendering
Diffstat (limited to 'components/package')
-rw-r--r-- | components/package/contents/ui/MailListView.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/package/contents/ui/MailListView.qml b/components/package/contents/ui/MailListView.qml index 75162c39..e716e984 100644 --- a/components/package/contents/ui/MailListView.qml +++ b/components/package/contents/ui/MailListView.qml | |||
@@ -87,6 +87,7 @@ Controls.ScrollView { | |||
87 | Text{ | 87 | Text{ |
88 | text: model.subject | 88 | text: model.subject |
89 | 89 | ||
90 | renderType: Text.NativeRendering | ||
90 | color: mailListDelegate.checked ? Kirigami.Theme.textColor : model.unread ? "#1d99f3" : Kirigami.Theme.textColor | 91 | color: mailListDelegate.checked ? Kirigami.Theme.textColor : model.unread ? "#1d99f3" : Kirigami.Theme.textColor |
91 | font.weight: model.unread || model.important ? Font.DemiBold : Font.Normal | 92 | font.weight: model.unread || model.important ? Font.DemiBold : Font.Normal |
92 | } | 93 | } |
@@ -94,15 +95,17 @@ Controls.ScrollView { | |||
94 | Text { | 95 | Text { |
95 | text: model.senderName | 96 | text: model.senderName |
96 | 97 | ||
98 | renderType: Text.NativeRendering | ||
97 | color: Kirigami.Theme.textColor | 99 | color: Kirigami.Theme.textColor |
98 | } | 100 | } |
99 | 101 | ||
100 | Text { | 102 | Text { |
101 | text: Qt.formatDateTime(model.date) | 103 | text: Qt.formatDateTime(model.date) |
102 | 104 | ||
105 | renderType: Text.NativeRendering | ||
103 | font.weight: Font.Light | 106 | font.weight: Font.Light |
104 | |||
105 | opacity: 0.5 | 107 | opacity: 0.5 |
108 | color: Kirigami.Theme.textColor | ||
106 | } | 109 | } |
107 | } | 110 | } |
108 | } | 111 | } |