Index: sources/gui/qml/compounds/TouchGrid.qml =================================================================== diff -u -r20b286ab574a6b8ad25a51aeb3477506f7dafc5d -r13d6a4fae2f910ab6e289ac9280258a94f734405 --- sources/gui/qml/compounds/TouchGrid.qml (.../TouchGrid.qml) (revision 20b286ab574a6b8ad25a51aeb3477506f7dafc5d) +++ sources/gui/qml/compounds/TouchGrid.qml (.../TouchGrid.qml) (revision 13d6a4fae2f910ab6e289ac9280258a94f734405) @@ -35,12 +35,13 @@ property var itemsHasImage : [] property var itemsHasLine : [] property var itemsTouchable : [] + property bool touchable : true property int itemWidth : 350 property int itemHeight : 50 property alias layoutOrder : _grid.flow property alias rowSpacing : _grid.rowSpacing - property alias columnSpacing : _grid.columnSpacing + property alias colSpacing : _grid.columnSpacing property color lineColor : Colors.borderButtonHalfDarker property real lineThickness : 1.5 property real itemsValueLeftMargin : itemWidth / 2 @@ -75,7 +76,7 @@ model : _root.itemsText TouchRect { id: _touchItem clip : true - touchable : undef( _root.itemsTouchable[index], true ) + touchable : undef( _root.itemsTouchable[index], _root.touchable ) text.anchors.horizontalCenter: undefined text.leftPadding : Variables.minVGap text.text : modelData