Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -rfe7605e216422cd8a9e39eca7cc609730a56fa32 -re12bcd41f4bbc3f4a97f338ffb9d20c1a04f5f83 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision fe7605e216422cd8a9e39eca7cc609730a56fa32) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision e12bcd41f4bbc3f4a97f338ffb9d20c1a04f5f83) @@ -31,25 +31,28 @@ property int fontPixelSizeText : 38 property string textObjectName: "_DebugDataColumn" + property var horizontalAlignmentTitle: Text.AlignRight + property var horizontalAlignmentText : Text.AlignRight + width : 150 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 {