Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r39a514158384c0ad4bfcfb90bafbaa4ca8dc5a26 -r0975a67dd4e4673b9a7b226bfea02cbfa489c418 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 39a514158384c0ad4bfcfb90bafbaa4ca8dc5a26) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 0975a67dd4e4673b9a7b226bfea02cbfa489c418) @@ -236,8 +236,8 @@ Rectangle { id: _timerRect property int countDown : 0 - height: 70 - width: parent.width / 3 + height : 70 + width : parent.width / 3 anchors { bottom : _alarmID.top @@ -247,41 +247,40 @@ } color : "#FFECEC" - radius : 10 + radius : height Text { id: _astrix anchors { - left: parent.left - leftMargin: Variables.defaultMargin - top: _timerDescription.top + left : parent.left + leftMargin : Variables.defaultMargin * 3 + top : _timerDescription.top } - color : "#AB352E" - text : "*" + color : "#AB352E" + text : "*" font.pixelSize : 25 font.weight : Font.Medium } Text { id: _timerDescription anchors { - verticalCenter: parent.verticalCenter - left: _astrix.right + verticalCenter : parent.verticalCenter + left : _astrix.right } color : "black" text : qsTr("Rinseback will not be allowed in:") font.pixelSize : 25 font.weight : Font.Medium - } TimeText { id: _timeoutText seconds : countDown * 60 anchors { verticalCenter : parent.verticalCenter - left: _timerDescription.right + left : _timerDescription.right } - height: _titleBar.height + height : _titleBar.height textPixelSize : 35 textWeight : Font.Bold secondsVisible : false