summaryrefslogtreecommitdiff
path: root/notificationswatchlet/metawatch-digital.qml
diff options
context:
space:
mode:
Diffstat (limited to 'notificationswatchlet/metawatch-digital.qml')
-rw-r--r--notificationswatchlet/metawatch-digital.qml19
1 files changed, 14 insertions, 5 deletions
diff --git a/notificationswatchlet/metawatch-digital.qml b/notificationswatchlet/metawatch-digital.qml
index 1e97052..9129226 100644
--- a/notificationswatchlet/metawatch-digital.qml
+++ b/notificationswatchlet/metawatch-digital.qml
@@ -24,15 +24,24 @@ Rectangle {
anchors.bottom: parent.bottom
model: watch.notifications
delegate: Rectangle {
+ id: notifDelegate
property bool selected: ListView.isCurrentItem
width: notifs.width
height: childrenRect.height
color: ListView.isCurrentItem ? "black" : "white"
- MWLabel {
- width: 96
- text: "<b>" + model.modelData.title + "</b><br>" + model.modelData.body
- wrapMode: Text.WrapAtWordBoundaryOrAnywhere
- color: parent.selected ? "white" : "black"
+ Column {
+ MWLabel {
+ width: notifs.width
+ text: model.modelData.title
+ wrapMode: Text.WrapAtWordBoundaryOrAnywhere
+ color: notifDelegate.selected ? "white" : "black"
+ }
+ MWSmallLabel {
+ width: notifs.width
+ text: model.modelData.body
+ wrapMode: Text.WrapAtWordBoundaryOrAnywhere
+ color: notifDelegate.selected ? "white" : "black"
+ }
}
}
visible: count > 0;