Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -re12bcd41f4bbc3f4a97f338ffb9d20c1a04f5f83 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision e12bcd41f4bbc3f4a97f338ffb9d20c1a04f5f83) @@ -31,24 +31,28 @@ property int fontPixelSizeText : 38 property string textObjectName: "_DebugDataColumn" + property var horizontalAlignmentTitle: Text.AlignRight + property var horizontalAlignmentText : Text.AlignRight + width : 150 - spacing : -14 + spacing : -15 Text { id: _title text : _root.title width : _root.width - horizontalAlignment: Text.AlignRight + horizontalAlignment: _root.horizontalAlignmentTitle color: Colors.textMain font.pixelSize: fontPixelSizeTitle font.underline: true + bottomPadding: 5 } Repeater { id: _repeater model: _root.model - Text { + Text { id: _text objectName: _root.textObjectName + index text: modelData width: _root.width - horizontalAlignment: Text.AlignRight + horizontalAlignment: _root.horizontalAlignmentText color: Colors.textMain font.pixelSize: fontPixelSizeText Text {