Browse Source

Merge pull request #5423 from DonLakeFlyer/WindRoseOff

Hide wind rose until bugs are fixed
QGC4.4
Don Gagne 8 years ago committed by GitHub
parent
commit
d8fd83dfcb
  1. 6
      src/PlanView/SurveyItemEditor.qml

6
src/PlanView/SurveyItemEditor.qml

@ -442,7 +442,8 @@ Rectangle { @@ -442,7 +442,8 @@ Rectangle {
id: windRoseButton
anchors.verticalCenter: angleText.verticalCenter
iconSource: qgcPal.globalTheme === QGCPalette.Light ? "/res/wind-roseBlack.svg" : "/res/wind-rose.svg"
visible: _vehicle.fixedWing
// Wind Rose is temporarily turned off until bugs are fixed
visible: false//_vehicle.fixedWing
onClicked: {
var cords = windRoseButton.mapToItem(_root, 0, 0)
@ -543,7 +544,8 @@ Rectangle { @@ -543,7 +544,8 @@ Rectangle {
anchors.verticalCenter: manualAngleText.verticalCenter
Layout.columnSpan: 1
iconSource: qgcPal.globalTheme === QGCPalette.Light ? "/res/wind-roseBlack.svg" : "/res/wind-rose.svg"
visible: _vehicle.fixedWing
// Wind Rose is temporarily turned off until bugs are fixed
visible: false//_vehicle.fixedWing
onClicked: {
var cords = manualWindRoseButton.mapToItem(_root, 0, 0)

Loading…
Cancel
Save