Browse Source

Hide wind rose until bugs are fixed

QGC4.4
DonLakeFlyer 8 years ago
parent
commit
01dea2019a
  1. 6
      src/PlanView/SurveyItemEditor.qml

6
src/PlanView/SurveyItemEditor.qml

@ -429,7 +429,8 @@ Rectangle { @@ -429,7 +429,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)
@ -530,7 +531,8 @@ Rectangle { @@ -530,7 +531,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