From 193b1e3fa7f55c83d5b0a5ca1009295743a4b1c0 Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Wed, 5 Feb 2014 19:38:38 +0100 Subject: [PATCH] Airframe config: fixed hexa copy and paste error --- src/ui/px4_configuration/QGCPX4AirframeConfig.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/px4_configuration/QGCPX4AirframeConfig.cc b/src/ui/px4_configuration/QGCPX4AirframeConfig.cc index 7c28e9ac5..00b410d33 100644 --- a/src/ui/px4_configuration/QGCPX4AirframeConfig.cc +++ b/src/ui/px4_configuration/QGCPX4AirframeConfig.cc @@ -71,13 +71,13 @@ QGCPX4AirframeConfig::QGCPX4AirframeConfig(QWidget *parent) : connect(ui->quadPlusComboBox, SIGNAL(activated(int)), this, SLOT(quadPlusSelected(int))); ui->quadPlusPushButton->setEnabled(ui->quadPlusComboBox->count() > 0); - ui->hexaPlusComboBox->addItem(tr("DJI F550 10\" Hexa"), 6001); + ui->hexaXComboBox->addItem(tr("Standard 10\" Hexa"), 6001); connect(ui->hexaXPushButton, SIGNAL(clicked()), this, SLOT(hexaXSelected())); connect(ui->hexaXComboBox, SIGNAL(activated(int)), this, SLOT(hexaXSelected(int))); ui->hexaXPushButton->setEnabled(ui->hexaXComboBox->count() > 0); - ui->hexaPlusComboBox->addItem(tr("DJI F550 10\" Hexa"), 7001); + ui->hexaPlusComboBox->addItem(tr("Standard 10\" Hexa"), 7001); connect(ui->hexaPlusPushButton, SIGNAL(clicked()), this, SLOT(hexaPlusSelected())); connect(ui->hexaPlusComboBox, SIGNAL(activated(int)), this, SLOT(hexaPlusSelected(int))); -- 2.22.0