Index: sources/gui/qml/pages/postTreatment/end/PostTreatmentEndPause.qml =================================================================== diff -u -r07e0c7bd409782cab96a4ae761ee3f819bdb8639 -r2d2917978a4e25eb79a0fb71851b6124171d8072 --- sources/gui/qml/pages/postTreatment/end/PostTreatmentEndPause.qml (.../PostTreatmentEndPause.qml) (revision 07e0c7bd409782cab96a4ae761ee3f819bdb8639) +++ sources/gui/qml/pages/postTreatment/end/PostTreatmentEndPause.qml (.../PostTreatmentEndPause.qml) (revision 2d2917978a4e25eb79a0fb71851b6124171d8072) @@ -27,10 +27,6 @@ ScreenItem { id: _root objectName: "_PostTreatmentEndPause" - property alias reasonText : _notification.text - - signal buttonClicked() - QtObject { id: _private property int sectionSpace : 30 property int sectionWidth : _root.width * 2/3 - sectionSpace * 1.5 @@ -77,36 +73,4 @@ font.pixelSize: Fonts.fontPixelButton } } - - Row { id: _buttonGroup - property int buttonsWidth : 300 - spacing: 75 - - anchors { - bottom : parent.bottom - horizontalCenter: parent.horizontalCenter - rightMargin : spacing - leftMargin : spacing - bottomMargin : spacing - } - - TouchRect { id : _buttonTouchRect - visible : false - text.text : qsTr("") - width : _buttonGroup.buttonsWidth - onClicked : buttonClicked() - } - } - - NotificationBar { id: _notification - iconVisible: false - } - - onVisibleChanged: { - _notification.text = "" - if (visible) { - _mainMenu .hidden = true - _treatmentMenu.hidden = true - } - } }