Index: sources/gui/qml/components/ReviewContainer.qml =================================================================== diff -u -rc16cfee6212ad1ba9f788c41d4a4c916daa43c9c -rabb959f145f8af64bab3b8f24314bf0ba8f3bb0e --- sources/gui/qml/components/ReviewContainer.qml (.../ReviewContainer.qml) (revision c16cfee6212ad1ba9f788c41d4a4c916daa43c9c) +++ sources/gui/qml/components/ReviewContainer.qml (.../ReviewContainer.qml) (revision abb959f145f8af64bab3b8f24314bf0ba8f3bb0e) @@ -15,6 +15,9 @@ property var precision : Array(label.count).fill(0) // default all 0 precision property string title : "" + property int cellHeight : Variables.createRxLabelUnitContainerHeight + property int valuePixelSize : Fonts.fontPixelValueControl + height : _column.implicitHeight + 10 width : parent.width radius : 9 @@ -29,7 +32,7 @@ Column { id: _column Rectangle { id: _header width : _root.width - height : Variables.createRxLabelUnitContainerHeight + height : _root.cellHeight color : Colors.panelBackgroundColor radius : _root.radius @@ -61,6 +64,7 @@ text : modelData color : Colors.transparent width : parent.width + height : _root.cellHeight unitText : _root.units[index] border.width: 0 @@ -77,7 +81,7 @@ text : typeof _root.initial[index] === "number" ? _root.initial[index].toFixed(_root.precision[index]) ?? "" : _root.initial[index] ?? "" color : Colors.offWhite - font.pixelSize : Fonts.fontPixelValueControl + font.pixelSize : _root.valuePixelSize verticalAlignment : Text.AlignVCenter visible : _root.initial[index] !== "" } @@ -86,7 +90,7 @@ text : typeof _root.actual[index] === "number" ? _root.actual[index].toFixed(_root.precision[index]) ?? "" : _root.actual[index] ?? "" color : Colors.ufVolumeGoalText - font.pixelSize : Fonts.fontPixelValueControl + font.pixelSize : _root.valuePixelSize verticalAlignment : Text.AlignVCenter visible : _root.actual[index] !== "" }