From 1717173ecaa55c71d468ecffda3496a163f04da9 Mon Sep 17 00:00:00 2001 From: dogmaphobic Date: Thu, 5 Feb 2015 15:16:52 -0500 Subject: [PATCH] Oops... Forgot them hardcoded. --- src/AutoPilotPlugins/PX4/SafetyComponent.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AutoPilotPlugins/PX4/SafetyComponent.qml b/src/AutoPilotPlugins/PX4/SafetyComponent.qml index 8f023fade..200d44e6b 100644 --- a/src/AutoPilotPlugins/PX4/SafetyComponent.qml +++ b/src/AutoPilotPlugins/PX4/SafetyComponent.qml @@ -117,7 +117,7 @@ Rectangle { width: parent.width font.pointSize: 14 text: "Warning: You have an advanced safety configuration set using the NAV_RCL_OBC parameter. The above settings may not apply."; - visible: autopilot.parameters["NAV_RCL_OBC"].value == 0 + visible: autopilot.parameters["NAV_RCL_OBC"].value != 0 color: palette.windowText wrapMode: Text.Wrap } @@ -125,7 +125,7 @@ Rectangle { width: parent.width font.pointSize: 14 text: "Warning: You have an advanced safety configuration set using the NAV_DLL_OBC parameter. The above settings may not apply."; - visible: autopilot.parameters["NAV_DLL_OBC"].value == 0 + visible: autopilot.parameters["NAV_DLL_OBC"].value != 0 color: palette.windowText wrapMode: Text.Wrap } -- 2.22.0