Index: sources/gui/qml/components/SettingsItem.qml =================================================================== diff -u -r5c9b16612ce300bba9c6f5a8c04f88a4bd67fefa -rd129507ca6ee06e76bd3500a77996687e09d3144 --- sources/gui/qml/components/SettingsItem.qml (.../SettingsItem.qml) (revision 5c9b16612ce300bba9c6f5a8c04f88a4bd67fefa) +++ sources/gui/qml/components/SettingsItem.qml (.../SettingsItem.qml) (revision d129507ca6ee06e76bd3500a77996687e09d3144) @@ -34,39 +34,39 @@ width: Variables.settingsOptionWidth height: Variables.settingsOptionHeight - MouseArea { - anchors.fill: parent; - Text { id: _titleText - anchors.left: parent.left; - anchors.verticalCenter: parent.verticalCenter - text: "Settings Option 1" - color: Colors.textButton - font.pixelSize: Fonts.fontPixelButton - } + Text { id: _titleText + anchors.left: parent.left; + anchors.verticalCenter: parent.verticalCenter + text: "Settings Option 1" + color: Colors.textButton + font.pixelSize: Fonts.fontPixelButton - Image { id: _arrowImage - visible: true - anchors.right: parent.right - anchors.verticalCenter: parent.verticalCenter - width : Variables.largeArrowWidth - height: Variables.largeArrowHeight - source: "qrc:/images/iArrow" - } + } - Line { - width: parent.width - color: "gray" - anchors.left: parent.left; - anchors.bottom: parent.bottom; - } + Image { id: _arrowImage + visible: true + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + width : Variables.largeArrowWidth + height: Variables.largeArrowHeight + source: "qrc:/images/iArrow" + } + Line { + width: parent.width + color: "gray" + anchors.left: parent.left; + anchors.bottom: parent.bottom; + } + + MouseArea { + anchors.fill: parent; onClicked: { console.debug("Clicked " + _titleText.text); _root.clicked(); } - } }