diff --git a/src/FlightMap/Widgets/QGCInstrumentWidget.qml b/src/FlightMap/Widgets/QGCInstrumentWidget.qml index 0631a90d672faa37fdac9f5d24b0999192b206d7..5c0065d818baa7dbe08efb0a5d902de6ed88ebe2 100644 --- a/src/FlightMap/Widgets/QGCInstrumentWidget.qml +++ b/src/FlightMap/Widgets/QGCInstrumentWidget.qml @@ -78,12 +78,21 @@ Rectangle { } Image { + id: gearThingy anchors.bottom: attitude.bottom anchors.right: attitude.right source: "/res/gear.svg" mipmap: true + opacity: 0.5 width: attitude.width * 0.15 fillMode: Image.PreserveAspectFit + MouseArea { + anchors.fill: parent + hoverEnabled: true + onEntered: gearThingy.opacity = 0.85 + onExited: gearThingy.opacity = 0.5 + onClicked: _valuesWidget.showPicker() + } } Rectangle {