Index: sources/gui/qml/compounds/LabelUnitContainer.qml =================================================================== diff -u -r135c320c850b09365c04e03d95195412c12fba72 -r7c550f70136f2f33520661a2e97fe99021cc681d --- sources/gui/qml/compounds/LabelUnitContainer.qml (.../LabelUnitContainer.qml) (revision 135c320c850b09365c04e03d95195412c12fba72) +++ sources/gui/qml/compounds/LabelUnitContainer.qml (.../LabelUnitContainer.qml) (revision 7c550f70136f2f33520661a2e97fe99021cc681d) @@ -26,10 +26,8 @@ property alias contentArea : _contentArea property alias text : _title.text - property alias textPixelSize : _title.font.pixelSize property string unitText : "" property bool valid : true - property bool showUnit : true property bool showEdit : false height : cellHeight @@ -60,11 +58,11 @@ Text { id: _unit anchors.baseline: _title.baseline - text : _root.unitText.length > 0 ? ("(%1)").arg(_root.unitText) : "" + text : ("(%1)").arg(_root.unitText) color : Colors.offWhite font.pixelSize : 22 font.weight : Font.Thin - visible : _root.showUnit + visible : _root.unitText.length > 0 } IconButton { id : _editButton