Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r2aacff00f09521902b4c0e06eb16c69b2cc31eed -r5d784780bbec88cd8531bb56fbcc6e6fe2703236 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 2aacff00f09521902b4c0e06eb16c69b2cc31eed) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 5d784780bbec88cd8531bb56fbcc6e6fe2703236) @@ -64,7 +64,7 @@ height : Variables.alarmDialogHeight onInstructionsChanged: { - _model.clear(); + _model.clear() for (var step in instructions) { _model.append({ text: instructions[step], image: "file:" + images[step] }) @@ -144,22 +144,22 @@ clip : true anchors { - top : _titleBar.bottom - topMargin: _root.headerOverlap * -1 - left: parent.left - right: parent.right - bottom: _timerRect.top + top : _titleBar.bottom + topMargin : _root.headerOverlap * -1 + left : parent.left + right : parent.right + bottom : _timerRect.top } Item { id: _infoItem anchors { left : parent.left leftMargin : Variables.defaultMargin * 2 - top :parent.top + top : parent.top topMargin : Variables.defaultMargin * 3 } - height: 35 - width: parent.width / 2 + height : 35 + width : parent.width / 2 NotificationBarSmall { id: _infoItem1 color : "transparent" @@ -174,17 +174,17 @@ Row { id: _alarmContentRow anchors { - top: _infoItem.bottom - bottom: parent.bottom - left: parent.left - leftMargin: Variables.defaultMargin * 4 - right: parent.right - rightMargin: Variables.defaultMargin * 3 - margins: Variables.defaultMargin + top : _infoItem.bottom + bottom : parent.bottom + left : parent.left + leftMargin : Variables.defaultMargin * 4 + right : parent.right + rightMargin : Variables.defaultMargin * 3 + margins : Variables.defaultMargin } - spacing: Variables.defaultMargin * 3 - width : _descriptionRect.width + spacing : Variables.defaultMargin * 3 + width : _descriptionRect.width ListView {id: _listView model : _model @@ -207,10 +207,10 @@ Text { id: _stepNumberRect anchors.centerIn: parent - text: index + 1 - color: Colors.white - font.pixelSize: 20 - font.weight: Font.Medium + text : index + 1 + color : Colors.white + font.pixelSize : 20 + font.weight : Font.Medium } layer.enabled : true @@ -247,12 +247,12 @@ leftMargin: _delegateText.contentWidth + Variables.defaultMargin verticalCenter: parent.verticalCenter } - height : parent.height - font.pixelSize: 22 - font.italic : true - color : "#18559E" - text : ("(%1)").arg(_root.figureTextString) - visible : _delegateControl.ListView.isCurrentItem && _root.showFigureText + height : parent.height + font.pixelSize : 22 + font.italic : true + color : "#18559E" + text : ("(%1)").arg(_root.figureTextString) + visible : _delegateControl.ListView.isCurrentItem && _root.showFigureText } MouseArea {