diff options
Diffstat (limited to 'components/package/contents/ui')
-rw-r--r-- | components/package/contents/ui/SingleMailView.qml | 19 |
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 |