summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-11-01 11:25:34 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-11-01 11:25:34 +0100
commit808896f0d0499f10a2e3cbe684c76e48207edf86 (patch)
treec34df4f11b03d81fcf56c27a8cc5e0d89d758206 /components/package/contents/ui
parent797c301157937a4904debdbedff5a97bd9a718f4 (diff)
downloadkube-808896f0d0499f10a2e3cbe684c76e48207edf86.tar.gz
kube-808896f0d0499f10a2e3cbe684c76e48207edf86.zip
Show recepients
Diffstat (limited to 'components/package/contents/ui')
-rw-r--r--components/package/contents/ui/SingleMailView.qml19
1 files changed, 14 insertions, 5 deletions
diff --git a/components/package/contents/ui/SingleMailView.qml b/components/package/contents/ui/SingleMailView.qml
index bc3225b3..a29f5fd9 100644
--- a/components/package/contents/ui/SingleMailView.qml
+++ b/components/package/contents/ui/SingleMailView.qml
@@ -107,15 +107,12 @@ Item {
107 opacity: 0.75 107 opacity: 0.75
108 } 108 }
109 109
110 //TODO not yet in model
111 /*
112 Text { 110 Text {
113 text: model.senderAd 111 text: model.senderAddress
114 112
115 color: Kirigami.Theme.textColor 113 color: Kirigami.Theme.textColor
116 opacity: 0.75 114 opacity: 0.75
117 } 115 }
118 */
119 } 116 }
120 117
121 RowLayout { 118 RowLayout {
@@ -123,7 +120,19 @@ Item {
123 text: "To:" 120 text: "To:"
124 } 121 }
125 Text { 122 Text {
126 text: "TODO TODO TODO"//model.receivers TODO not yet in model 123 text: model.to
124
125 color: Kirigami.Theme.textColor
126 opacity: 0.75
127 }
128 Text {
129 text: model.cc
130
131 color: Kirigami.Theme.textColor
132 opacity: 0.75
133 }
134 Text {
135 text: model.bcc
127 136
128 color: Kirigami.Theme.textColor 137 color: Kirigami.Theme.textColor
129 opacity: 0.75 138 opacity: 0.75