Index: sources/gui/qml/dialogs/watersample/WaterSampleDialog.qml =================================================================== diff -u -ref583f0056a0fb8c66a64e132be159719b2bc2f6 -re34703a10dcb558f13948e7d0ac4994f07270239 --- sources/gui/qml/dialogs/watersample/WaterSampleDialog.qml (.../WaterSampleDialog.qml) (revision ef583f0056a0fb8c66a64e132be159719b2bc2f6) +++ sources/gui/qml/dialogs/watersample/WaterSampleDialog.qml (.../WaterSampleDialog.qml) (revision e34703a10dcb558f13948e7d0ac4994f07270239) @@ -22,7 +22,6 @@ import "qrc:/components" ModalDialog { id: _root - width : Variables.dialogWidth height : Variables.dialogHeight clip : true @@ -40,11 +39,8 @@ top : parent.top left : parent.left leftMargin : Variables.defaultMargin * 4 - right : parent.right - rightMargin : Variables.defaultMargin * 4 } - - width : _root.width + width : _root.width / 2.5 color : Colors.transparent titlePixelSize : 30 model : _model @@ -53,16 +49,16 @@ ListElement { text: qsTr("Water Sample") ; visible: true } ListElement { text: qsTr("Dialysate Checks") ; visible: true } } - - Line { - anchors { - bottom : parent.bottom - right : parent.right - left : parent.left - } - - color : Colors.panelBorderColor + } + Line { + anchors { + bottom : _menu.bottom + left : _menu.left + right : parent.right + rightMargin : Variables.defaultMargin * 4 } + + color : Colors.panelBorderColor } CloseButton { id : _closeButton