Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -r9abc1790bb39fb52bf5a2bd113bc8957e4a1fc30 -r1b179fe77fc16bc3f4eca4824b8adb32cb558f52 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 9abc1790bb39fb52bf5a2bd113bc8957e4a1fc30) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 1b179fe77fc16bc3f4eca4824b8adb32cb558f52) @@ -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 {