summaryrefslogtreecommitdiffstats
path: root/applications/kmail-quick/package/contents/ui/MailListView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'applications/kmail-quick/package/contents/ui/MailListView.qml')
-rw-r--r--applications/kmail-quick/package/contents/ui/MailListView.qml33
1 files changed, 32 insertions, 1 deletions
diff --git a/applications/kmail-quick/package/contents/ui/MailListView.qml b/applications/kmail-quick/package/contents/ui/MailListView.qml
index 61ab1972..0ec73121 100644
--- a/applications/kmail-quick/package/contents/ui/MailListView.qml
+++ b/applications/kmail-quick/package/contents/ui/MailListView.qml
@@ -56,7 +56,7 @@ ListView {
56 } 56 }
57 57
58 Label { 58 Label {
59 id: sender 59 id: senderName
60 60
61 anchors { 61 anchors {
62 top: avatar.top 62 top: avatar.top
@@ -69,6 +69,37 @@ ListView {
69 font.weight: Font.DemiBold 69 font.weight: Font.DemiBold
70 } 70 }
71 71
72 Label {
73 id: sender
74
75 anchors {
76 top: avatar.top
77 left: senderName.right
78 leftMargin: unit.size
79 right: date.left
80 rightMargin: unit.size
81 }
82
83 text: "(" + model.sender +")"
84
85 font.weight: Font.ExtraLight
86
87 clip: true
88 }
89
90 Label {
91 id: date
92
93 anchors {
94 top: avatar.top
95 right: parent.right
96 rightMargin: unit.size * 2
97 }
98
99 text: model.date
100
101 font.weight: Font.Light
102 }
72 103
73 Label { 104 Label {
74 id: subject 105 id: subject