QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
DeadMouseArea.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4MouseArea {
5 preventStealing:true
6 hoverEnabled: true
7 onWheel: (wheel) => { wheel.accepted = true; }
8 onPressed: (mouse) => { mouse.accepted = true; }
9 onReleased: (mouse) => { mouse.accepted = true; }
10}