Index: sources/gui/qml/compounds/BPHREntry.qml =================================================================== diff -u -r124c2e38e72a1a655d9d479c9c7a1cd8c5d5e6c4 -r2e7d498210ba1837f0d77c23c62bf2cf43a26112 --- sources/gui/qml/compounds/BPHREntry.qml (.../BPHREntry.qml) (revision 124c2e38e72a1a655d9d479c9c7a1cd8c5d5e6c4) +++ sources/gui/qml/compounds/BPHREntry.qml (.../BPHREntry.qml) (revision 2e7d498210ba1837f0d77c23c62bf2cf43a26112) @@ -67,7 +67,6 @@ QtObject { id: _private property bool isBloodPressureCompareValid : (parseInt(_bloodPressureDiastolic.text) <= parseInt(_bloodPressureSystolic.text)) } - anchors.horizontalCenter: parent.horizontalCenter y : Qt.inputMethod.visible && _keyboard.visible ? _root.topMarginContent : ( ( _root.contentRectHeight - _container.height ) / 2 ) Behavior on y { NumberAnimation { duration: Variables.keybardAnimationDuration } } @@ -79,7 +78,7 @@ leftPadding : _root.titleIndent Row { spacing : 10 TextEntry { id : _bloodPressureSystolic - text : Variables.notSetVariable(vTreatmentVitals.systolic, 0) + text : _GuiView.dryDemoMode ? "140" : Variables.notSetVariable(vTreatmentVitals.systolic, 0) label.text : qsTr("Blood Pressure") label.width : _root.labelWidth validator : IntValidator { bottom: vTreatmentVitals.systolicMin; top : vTreatmentVitals.systolicMax } @@ -92,7 +91,7 @@ width : 10 } TextEntry { id : _bloodPressureDiastolic - text : Variables.notSetVariable(vTreatmentVitals.diastolic, 0) + text : _GuiView.dryDemoMode ? "90" : Variables.notSetVariable(vTreatmentVitals.diastolic, 0) label.width : 0 validator : IntValidator { bottom: vTreatmentVitals.diastolicMin; top : vTreatmentVitals.diastolicMax } onClicked : _root.clicked() @@ -106,7 +105,7 @@ } Row { spacing : 10 TextEntry { id : _heartRate - text : Variables.notSetVariable(vTreatmentVitals.heartRate, 0) + text : _GuiView.dryDemoMode ? "80" : Variables.notSetVariable(vTreatmentVitals.heartRate, 0) label.text : qsTr("Heart Rate") label.width : _root.labelWidth onClicked : _root.clicked()