Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentIsolatedUFConfirm.qml =================================================================== diff -u -r0a9e9579c7481eb5e0900fe604cac7bba6bb86ca -rf66e9731c3c643653bacbf47c0e34a9e05774f00 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentIsolatedUFConfirm.qml (.../TreatmentAdjustmentIsolatedUFConfirm.qml) (revision 0a9e9579c7481eb5e0900fe604cac7bba6bb86ca) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentIsolatedUFConfirm.qml (.../TreatmentAdjustmentIsolatedUFConfirm.qml) (revision f66e9731c3c643653bacbf47c0e34a9e05774f00) @@ -63,42 +63,42 @@ spacing : Variables.defaultMargin LabelUnitText { id: _volumeGoal - objectName: "_volumeGoal" + objectName : "_volumeGoal" anchors { - left: parent.left - right: parent.right + left : parent.left + right : parent.right } - layout: LabelUnitText.Layout.Justify - label: qsTr("Isolated UF Volume Goal") - unit: Variables.unitVolume - valueColor: Colors.ufVolumeGoalText - value: _private.volume.toFixed(Variables.ultrafiltrationPrecision) + textAlignment : Text.AlignJustify + label : qsTr("Isolated UF Volume Goal") + unit : Variables.unitVolume + valueColor : Colors.ufVolumeGoalText + value : _private.volume.toFixed(Variables.ultrafiltrationPrecision) } LabelUnitText { id: _duration - objectName: "_duration" + objectName : "_duration" anchors { - left: parent.left - right: parent.right + left : parent.left + right : parent.right } - layout: LabelUnitText.Layout.Justify - label: qsTr("Isolated UF Duration") - unit: Variables.unitTextDuration - valueColor: Colors.ufVolumeGoalText - value: _root.duration + textAlignment : Text.AlignJustify + label : qsTr("Isolated UF Duration") + unit : Variables.unitTextDuration + valueColor : Colors.ufVolumeGoalText + value : _root.duration } LabelUnitText { id: _rate - objectName: "_rate" + objectName : "_rate" anchors { - left: parent.left - right: parent.right + left : parent.left + right : parent.right } - layout: LabelUnitText.Layout.Justify - label: qsTr("Isolated UF Rate") - unit: Variables.unitTextRate - valueColor: Colors.ufVolumeGoalText - value: _private.rate.toFixed(Variables.ultrafiltrationPrecision) + textAlignment : Text.AlignJustify + label : qsTr("Isolated UF Rate") + unit : Variables.unitTextRate + valueColor : Colors.ufVolumeGoalText + value : _private.rate.toFixed(Variables.ultrafiltrationPrecision) } } }