Index: sources/gui/qml/compounds/TouchGrid.qml =================================================================== diff -u -r80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803 -r6be40239ce52d641692de158a044af0a54cde1e8 --- sources/gui/qml/compounds/TouchGrid.qml (.../TouchGrid.qml) (revision 80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803) +++ sources/gui/qml/compounds/TouchGrid.qml (.../TouchGrid.qml) (revision 6be40239ce52d641692de158a044af0a54cde1e8) @@ -34,6 +34,7 @@ property var itemsVisible : [] property var itemsHasImage : [] property var itemsHasLine : [] + property var itemsHasIndent : [] property var itemsTouchable : [] property bool touchable : true @@ -93,10 +94,11 @@ Repeater { model : _root.itemsText TouchRect { id: _touchItem + readonly property int indentMargin : (undef( _root.itemsHasIndent[index], false ) ? 20 : 0) clip : true touchable : undef( _root.itemsTouchable[index], _root.touchable ) text.anchors.horizontalCenter: undefined - text.leftPadding : Variables.minVGap + text.leftPadding : Variables.minVGap + indentMargin text.text : modelData border.width : 0 height : _root.itemHeight