Index: sources/gui/qml/compounds/LabelUnitContainer.qml =================================================================== diff -u -r2b0c62ca1a150e1a375ab388be076e17532cb20f -rb12853c86ef9e517667516dc3e47bca07349cedf --- sources/gui/qml/compounds/LabelUnitContainer.qml (.../LabelUnitContainer.qml) (revision 2b0c62ca1a150e1a375ab388be076e17532cb20f) +++ sources/gui/qml/compounds/LabelUnitContainer.qml (.../LabelUnitContainer.qml) (revision b12853c86ef9e517667516dc3e47bca07349cedf) @@ -30,9 +30,6 @@ property bool valid : true property bool showUnit : true property bool showEdit : false - property int titlePixelSize : Fonts.fontPixelContainerTitle - property int unitPixelSize : Fonts.fontPixelContainerUnit - property int titleLeftMargin: Variables.defaultMargin height : cellHeight width : cellWidth @@ -50,21 +47,21 @@ anchors { verticalCenter : parent.verticalCenter left : parent.left - leftMargin : _root.titleLeftMargin + leftMargin : Variables.defaultMargin } spacing : 10 Text { id: _title anchors.verticalCenter : _titleRow.verticalCenter color : Colors.offWhite - font.pixelSize : _root.titlePixelSize + font.pixelSize : Fonts.fontPixelContainerTitle } Text { id: _unit anchors.bottom : _title.bottom text : ("(%1)").arg(_root.unitText) color : Colors.offWhite - font.pixelSize : _root.unitPixelSize + font.pixelSize : Fonts.fontPixelContainerUnit font.weight : Font.Thin visible : _root.showUnit }