Browse Source

Work around for random rectangles over maps when using some QtQuick.Controls 2.x controls.

QGC4.4
Gus Grubba 5 years ago
parent
commit
03eb407b6e
  1. 3
      src/FlightMap/FlightMap.qml

3
src/FlightMap/FlightMap.qml

@ -30,6 +30,9 @@ Map { @@ -30,6 +30,9 @@ Map {
gesture.flickDeceleration: 3000
plugin: Plugin { name: "QGroundControl" }
// https://bugreports.qt.io/browse/QTBUG-82185
opacity: 0.99
property string mapName: 'defaultMap'
property bool isSatelliteMap: activeMapType.name.indexOf("Satellite") > -1 || activeMapType.name.indexOf("Hybrid") > -1
property var gcsPosition: QGroundControl.qgcPositionManger.gcsPosition

Loading…
Cancel
Save