Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -r93b6bd48e2aec1fca4f2b5b79dcefffa49e9ce16 -r1b24a85761c65a685fac98f396e244af97b94443 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 93b6bd48e2aec1fca4f2b5b79dcefffa49e9ce16) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 1b24a85761c65a685fac98f396e244af97b94443) @@ -25,6 +25,7 @@ Column { id: _root property var model: [] + property var label: [] property string title: "Title" property int fontPixelSizeTitle: 38 property int fontPixelSizeText : 38 @@ -50,6 +51,16 @@ horizontalAlignment: Text.AlignRight color: Colors.textMain font.pixelSize: fontPixelSizeText + Text { + objectName : _root.textObjectName + "L" + index + text : (index < _root.label.length) ? _root.label[index] : "" +// width : 5 + color : Colors.textMain + font.pixelSize : 10 + anchors.baseline: parent.baseline + anchors.left : parent.right + horizontalAlignment: Text.AlignLeft + } } } }