Index: sources/gui/qml/components/LabelValue.qml =================================================================== diff -u -r7805806e4370be4d9207872e916f478875bd4ba6 -rdb6925e589ca85f2272af31d5f90f41452b342a7 --- sources/gui/qml/components/LabelValue.qml (.../LabelValue.qml) (revision 7805806e4370be4d9207872e916f478875bd4ba6) +++ sources/gui/qml/components/LabelValue.qml (.../LabelValue.qml) (revision db6925e589ca85f2272af31d5f90f41452b342a7) @@ -18,6 +18,7 @@ property string bottomText : "" property string bottomTextColor : Colors.textTextRectLabel property alias bottomTextFont : _bottomText.font + property int bottomTextTopMargin : 0 property string unitText : "" @@ -46,7 +47,8 @@ Text { id: _bottomText anchors { - top: showCenterText ? _centerText.bottom :_topText.bottom + top : showCenterText ? _centerText.bottom :_topText.bottom + topMargin : bottomTextTopMargin horizontalCenter: leftAlign ? undefined : _topText.horizontalCenter } text: _root.bottomText