Index: sources/gui/qml/components/GridSelection.qml =================================================================== diff -u -r79a6cfcb10472261f3ec26eaf0baf6f1245cd311 -rc75017688e992f20dd126054abf6e639883b0303 --- sources/gui/qml/components/GridSelection.qml (.../GridSelection.qml) (revision 79a6cfcb10472261f3ec26eaf0baf6f1245cd311) +++ sources/gui/qml/components/GridSelection.qml (.../GridSelection.qml) (revision c75017688e992f20dd126054abf6e639883b0303) @@ -35,6 +35,7 @@ property int optionWidth : Variables.gridSelectionButtonWidth property alias title : _title.text property var labels : [] + property bool active : false readonly property int _itemCount: labels.length readonly property int _rowCount : Math.ceil( _itemCount / _colCount ) @@ -77,6 +78,7 @@ onClicked: { _root.curIndex = index _root.clicked ( index ) + _root.active = true } } }