Index: sources/gui/qml/dialogs/DiagnosticsDialog.qml =================================================================== diff -u -r30a3a58cde0e82d66c8c5f242ec550007e20b694 -r65754e8011da96b2debb057869d41e875cb4014b --- sources/gui/qml/dialogs/DiagnosticsDialog.qml (.../DiagnosticsDialog.qml) (revision 30a3a58cde0e82d66c8c5f242ec550007e20b694) +++ sources/gui/qml/dialogs/DiagnosticsDialog.qml (.../DiagnosticsDialog.qml) (revision 65754e8011da96b2debb057869d41e875cb4014b) @@ -203,15 +203,15 @@ } DebugDataColumn { id: _DGConductivityColumn - x: col(3.6) - y: row(3.4) + x: col(3.8) + y: row(3.5) title: qsTr(" Conduct ") model: [ - vDGConductivity.RORejectionRatio .toFixed(3), - vDGConductivity.CPi .toFixed(3), - vDGConductivity.CPo .toFixed(3), - vDGConductivity.CD1 .toFixed(3), - vDGConductivity.CD2 .toFixed(3), + vDGConductivity.RORejectionRatio .toFixed(1), + vDGConductivity.CPi .toFixed(1), + vDGConductivity.CPo .toFixed(1), + vDGConductivity.CD1 .toFixed(1), + vDGConductivity.CD2 .toFixed(1), ] label: [ "ROrr" , @@ -226,7 +226,7 @@ DebugDataColumn { id: _HDAirColumn x: col(6) - y: row(4.2) + y: row(4.1) title: qsTr(" Air Status ") model: [ vHDAirBubble .venousAirBubbleStatus , @@ -235,7 +235,7 @@ ] label: [ - "ABs", + "ADV", "ATll", "ATul", @@ -391,7 +391,7 @@ Text { id : _canbusFaultCountText x: col(0) - y: row(6) + y: row(6.8) property int count: 0 visible: true text: qsTr("CAN Faults: %1").arg(count) @@ -504,7 +504,7 @@ Text { id : _mouseEventCountText x: col(2) - y: row(6) + y: row(6.8) visible: true text: String("Touch Count: %1,%2") .arg(GuiEventSpy.touchCount /*.toString().padStart(4,'0')*/ ) @@ -519,8 +519,8 @@ } DebugDataColumn { id: _PreTreatmentStates - x: col(1) - y: row(6.5) + x: col(1.5) + y: row(6) title: qsTr(" PreTx States ") model: [ "%1, %2, %3, %4, %5, %6, %7, %8" .arg(vPreTreatmentStates.subMode ) @@ -537,8 +537,8 @@ DebugDataColumn { id: _HDAlarmTop x: col(3) - y: row(6.5) - title: qsTr(" Alarm ") + y: row(6) + title: qsTr(" Alarms ") model: [ vAlarmStatus.alarm_AlarmID, ]