Index: sources/gui/qml/dialogs/AlarmListDialog.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -re568c0be76dcf80834f68b30d7291f45172b6f69 --- sources/gui/qml/dialogs/AlarmListDialog.qml (.../AlarmListDialog.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/dialogs/AlarmListDialog.qml (.../AlarmListDialog.qml) (revision e568c0be76dcf80834f68b30d7291f45172b6f69) @@ -60,16 +60,17 @@ id: _icon source: "qrc:/images/iList" anchors.horizontalCenter: _title.horizontalCenter - anchors.verticalCenter: _title.verticalCenter - anchors.horizontalCenterOffset: -_title.width + Variables.dialogIconHorizontalOffset; + anchors.verticalCenter : _title.verticalCenter + anchors.horizontalCenterOffset: - ((_title.width / 2) + Variables.dialogIconHorizontalOffset) + anchors.verticalCenterOffset : 2 height : Variables.alarmListIconDiameter width : Variables.alarmListIconDiameter } Text { id: _title color: Colors.textMain font.pixelSize: Fonts.fontPixelTitle - text: qsTr("Alarm list") + text: qsTr("Alarm List") anchors.centerIn: _titleBar; }