diff --git a/src/AutoPilotPlugins/PX4/AirframeComponent.qml b/src/AutoPilotPlugins/PX4/AirframeComponent.qml index 47e9cc030bbc040a2e5ff01e6bd7aa2ce6601a71..e65d51cfa73660bbb6106b0c5cc7484035868619 100644 --- a/src/AutoPilotPlugins/PX4/AirframeComponent.qml +++ b/src/AutoPilotPlugins/PX4/AirframeComponent.qml @@ -79,7 +79,7 @@ QGCView { id: customConfigDialog message: qsTr("Your vehicle is using a custom airframe configuration. ") + qsTr("This configuration can only be modified through the Parameter Editor.\n\n") + - qsTr("If you want to Reset your airframe configuration and select a standard configuration, click 'Reset' above.") + qsTr("If you want to reset your airframe configuration and select a standard configuration, click 'Reset' above.") property Fact sys_autostart: controller.getParameterFact(-1, "SYS_AUTOSTART") diff --git a/src/QmlControls/QGCView.qml b/src/QmlControls/QGCView.qml index 9f3cab3b705521760c4f17c114cf2b44a00846e6..6d69f1360e4f2b6b4a30c57cce11c5c9e2efa075 100644 --- a/src/QmlControls/QGCView.qml +++ b/src/QmlControls/QGCView.qml @@ -107,9 +107,6 @@ FactPanel { } else if (buttons & StandardButton.Abort) { __rejectButton.text = qsTr("Abort") __rejectButton.visible = true - } else if (buttons & StandardButton.Reset) { - __rejectButton.text = qsTr("Reset") - __rejectButton.visible = true } }