Commit 813bae19 authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #155 from jjhall89/ReadWriteButton

Issue #126
parents c23ac709 37cee869
......@@ -79,13 +79,13 @@ QGCParamWidget::QGCParamWidget(UASInterface* uas, QWidget *parent) :
// BUTTONS
QPushButton* refreshButton = new QPushButton(tr("Refresh"));
QPushButton* refreshButton = new QPushButton(tr("Get"));
refreshButton->setToolTip(tr("Load parameters currently in non-permanent memory of aircraft."));
refreshButton->setWhatsThis(tr("Load parameters currently in non-permanent memory of aircraft."));
connect(refreshButton, SIGNAL(clicked()), this, SLOT(requestParameterList()));
horizontalLayout->addWidget(refreshButton, 2, 0);
QPushButton* setButton = new QPushButton(tr("Transmit"));
QPushButton* setButton = new QPushButton(tr("Set"));
setButton->setToolTip(tr("Set current parameters in non-permanent onboard memory"));
setButton->setWhatsThis(tr("Set current parameters in non-permanent onboard memory"));
connect(setButton, SIGNAL(clicked()), this, SLOT(setParameters()));
......
......@@ -209,7 +209,7 @@
<string>Read all waypoints from the MAV. Clears the list on this computer.</string>
</property>
<property name="text">
<string>Read</string>
<string>Get</string>
</property>
<property name="icon">
<iconset resource="../../qgroundcontrol.qrc">
......@@ -229,7 +229,7 @@
<string>Transmit all waypoints on this list to the MAV.</string>
</property>
<property name="text">
<string>Write</string>
<string>Set</string>
</property>
<property name="icon">
<iconset resource="../../qgroundcontrol.qrc">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment