Index: sources/gui/qml/dialogs/watersample/WaterSamplePage.qml =================================================================== diff -u -r6500e0b383e7fd0bb5a2c4e8fe95a2ea5832845e -reab35af615619934a2a20b8a27f62d1dcc873af4 --- sources/gui/qml/dialogs/watersample/WaterSamplePage.qml (.../WaterSamplePage.qml) (revision 6500e0b383e7fd0bb5a2c4e8fe95a2ea5832845e) +++ sources/gui/qml/dialogs/watersample/WaterSamplePage.qml (.../WaterSamplePage.qml) (revision eab35af615619934a2a20b8a27f62d1dcc873af4) @@ -71,31 +71,30 @@ font.weight : Font.Medium } - Item { id: _infoItem + NotificationBarSmall { id: _infoNotificationBar anchors { + bottom : undefined + right : undefined left : _title.left top : _title.bottom topMargin : Variables.defaultMargin * 2 } - height : Variables.contentHeight - width : _infoNotificationBar.contentWidth - - NotificationBarSmall { id: _infoNotificationBar - color : "transparent" - imageSource : "qrc:/images/iHelp" - imageVisible : true - text : qsTr("Test the carbon filters per your clinic's instructions") - textColor : "#595959" - imageDiameter : 25 - imageTopMargin : 3 - } + width : parent.width / 3 + height : Variables.contentHeight + color : "transparent" + imageSource : "qrc:/images/iHelp" + imageVisible : true + text : qsTr("Test the carbon filters per your clinic's instructions") + textColor : "#595959" + imageDiameter : 25 + imageTopMargin : 3 } Item { id: _instructionContainer anchors { right : _content.right left : _title.left - top : _infoItem.bottom + top : _infoNotificationBar.bottom bottom : _content.bottom }