From cb627b615e3f7b8d1ce9d932c376a5214764f93f Mon Sep 17 00:00:00 2001 From: dogmaphobic <dogmaphobic@users.noreply.github.com> Date: Thu, 5 Feb 2015 15:15:49 -0500 Subject: [PATCH] When enabling the warnings, I realized the dialog was too small for them. --- src/AutoPilotPlugins/PX4/SafetyComponent.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AutoPilotPlugins/PX4/SafetyComponent.qml b/src/AutoPilotPlugins/PX4/SafetyComponent.qml index d8ef147..8f023fa 100644 --- a/src/AutoPilotPlugins/PX4/SafetyComponent.qml +++ b/src/AutoPilotPlugins/PX4/SafetyComponent.qml @@ -8,7 +8,7 @@ Rectangle { QGCPalette { id: palette; colorGroup: QGCPalette.Active } width: 600 - height: 400 + height: 600 color: palette.window property var leftColWidth: 350 @@ -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 == 1 + 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 == 1 + visible: autopilot.parameters["NAV_DLL_OBC"].value == 0 color: palette.windowText wrapMode: Text.Wrap }