From 01dea2019a6da1bc7a31ecbc389a7d2711989cfa Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Sun, 9 Jul 2017 13:30:50 -0700 Subject: [PATCH] Hide wind rose until bugs are fixed --- src/PlanView/SurveyItemEditor.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/PlanView/SurveyItemEditor.qml b/src/PlanView/SurveyItemEditor.qml index 8c688e450..0684c59b5 100644 --- a/src/PlanView/SurveyItemEditor.qml +++ b/src/PlanView/SurveyItemEditor.qml @@ -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 { 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) -- 2.22.0