Index: sources/gui/qml/pages/Diagnostics.qml =================================================================== diff -u -rcbea4224ad67eecc2e7c4c66df9a7db711c72832 -rd129507ca6ee06e76bd3500a77996687e09d3144 --- sources/gui/qml/pages/Diagnostics.qml (.../Diagnostics.qml) (revision cbea4224ad67eecc2e7c4c66df9a7db711c72832) +++ sources/gui/qml/pages/Diagnostics.qml (.../Diagnostics.qml) (revision d129507ca6ee06e76bd3500a77996687e09d3144) @@ -27,6 +27,7 @@ * which is the default screen in the "Settings" stack */ ScreenItem { id: _root + signal backClicked() USBButton { id: _usbButton anchors { @@ -64,12 +65,16 @@ } } + BackButton { id : _backButton + onClicked: backClicked(); + } + Text { id : _canbusFaultCountText property int count: 0 visible: true anchors { top : parent.top - left : parent.left + left : _backButton.right topMargin : (Variables.headerHeight - Variables.logoHeight) / 2 leftMargin : (Variables.headerHeight - Variables.logoHeight) / 2 }