Index: sources/gui/qml/pages/pretreatment/connection/PreTreatmentConnectionStack.qml =================================================================== diff -u -re384cd37cb5f778a75e86c28e5901086a5aa2aa3 -r9e2abbe568ea8bcf1a9ee955c56a0bfd840c2840 --- sources/gui/qml/pages/pretreatment/connection/PreTreatmentConnectionStack.qml (.../PreTreatmentConnectionStack.qml) (revision e384cd37cb5f778a75e86c28e5901086a5aa2aa3) +++ sources/gui/qml/pages/pretreatment/connection/PreTreatmentConnectionStack.qml (.../PreTreatmentConnectionStack.qml) (revision 9e2abbe568ea8bcf1a9ee955c56a0bfd840c2840) @@ -52,17 +52,16 @@ contentRectHeight : _root.height } TouchRect { id: _enterBluetoothScreen - visible : true - text.text : qsTr("Bluetooth Settings") + visible : vBluetooth.pairedAddr == "" // empty pairedAddr indicate not paired + text.text : qsTr("CONNECTION") onClicked : _settingsBluetoothPage.visible = true - isDefault : true width : _bphrEntry.width/2 anchors.top : _bphrEntry.bottom anchors.topMargin : Variables.notificationHeight + Variables.minVGap anchors.horizontalCenter: _bphrEntry.horizontalCenter } Label { - text : qsTr("Press START on Blood Pressure Measurement Cuff to display reading or enter vitals manually") + text : (vBluetooth.pairedAddr == "") ? qsTr("Press CONNECTION to pair a Bluetooth Pressure Measurement Cuff.") : qsTr("Press START on Blood Pressure Measurement Cuff to display reading or enter vitals manually") width : parent.width anchors { bottom: parent.bottom