Index: sources/gui/qml/components/NotificationBar.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r6b60df9d8468e2134c7de32bd0f6215cef33269b --- sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision 6b60df9d8468e2134c7de32bd0f6215cef33269b) @@ -23,6 +23,7 @@ Rectangle { id: _root objectName: "NotificationBar" // SquishQt + property int alarmID : -1 property alias text : _text.text property alias textPixelSize : _text.font.pixelSize property alias textColor : _text.color @@ -130,4 +131,14 @@ onClicked: _root.listClicked() } + Text { id: _alarmID + text : qsTr("ID") + ":" + _root.alarmID + anchors { + right : parent.right + top : parent.top + rightMargin : 130 + } + color : Colors.textMain + font.pixelSize : Fonts.fontPixelDialogText + } }