text:qsTr("The vehicle parameters required for follow me are currently set in a way which is not supported. Using follow with this setup may lead to unpredictable/hazardous results.")
wrapMode:Text.WordWrap
onWidthChanged:console.log('width',width)
}
QGCButton{
text:qsTr("Reset To Supported Settings")
onClicked:_setFollowMeParamDefaults()
}
}
ColumnLayout{
Layout.fillWidth:true
spacing:ScreenTools.defaultFontPixelWidth
visible:_isFollowMeSetup
visible:_showMainSetup
ColumnLayout{
Layout.fillWidth:true
spacing:ScreenTools.defaultFontPixelWidth
visible:_followParamsAvailable&&_isFollowMeSetup
GridLayout{
Layout.fillWidth:true
...
...
@@ -226,10 +268,12 @@ SetupPage {
QGCComboBox{
id:pointVehicleCombo
Layout.fillWidth:true
// NOTE: The indices for the model below must match the values for FOLL_YAW_BEHAVE
model:[qsTr("Maintain current vehicle orientation"),qsTr("Point at ground station location"),qsTr("Same orientation as ground station"),qsTr("Same direction as ground station movement")]
propertyvarrgText:[qsTr("Maintain current vehicle orientation"),qsTr("Point at ground station location"),qsTr("Same direction as ground station movement")]