|
|
|
@ -17,7 +17,7 @@ Rectangle {
@@ -17,7 +17,7 @@ Rectangle {
|
|
|
|
|
anchors.right: parent.right |
|
|
|
|
anchors.top: parent.top |
|
|
|
|
z: toolBar.z + 1 |
|
|
|
|
color: qgcPal.window |
|
|
|
|
color: qgcPal.globalTheme === QGCPalette.Light ? Qt.rgba(1,1,1,0.8) : Qt.rgba(0,0,0,0.75) |
|
|
|
|
visible: false |
|
|
|
|
|
|
|
|
|
signal showFlyView |
|
|
|
@ -56,6 +56,14 @@ Rectangle {
@@ -56,6 +56,14 @@ Rectangle {
|
|
|
|
|
|
|
|
|
|
QGCPalette { id: qgcPal } |
|
|
|
|
|
|
|
|
|
//-- Eat mouse events, preventing them from reaching toolbar, which is underneath us. |
|
|
|
|
MouseArea { |
|
|
|
|
anchors.fill: parent |
|
|
|
|
onWheel: { wheel.accepted = true; } |
|
|
|
|
onPressed: { mouse.accepted = true; } |
|
|
|
|
onReleased: { mouse.accepted = true; } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Row { |
|
|
|
|
anchors.top: parent.top |
|
|
|
|
anchors.bottom: parent.bottom |
|
|
|
|