Commit 707b16d8 authored by DonLakeFlyer's avatar DonLakeFlyer

parent 64eebbef
...@@ -6,6 +6,7 @@ Note: This file only contains high level features or important fixes. ...@@ -6,6 +6,7 @@ Note: This file only contains high level features or important fixes.
### 3.6.0 - Daily Build ### 3.6.0 - Daily Build
* ArduCopter: Add PID Tuning page to Tuning Setup
* ArduPilot: Copter - Advanced Tuning support * ArduPilot: Copter - Advanced Tuning support
* ArduPilot: Rover - Frame setup support * ArduPilot: Rover - Frame setup support
* ArduPilot: Copter - Update support to 3.5+ * ArduPilot: Copter - Update support to 3.5+
......
...@@ -323,7 +323,7 @@ RowLayout { ...@@ -323,7 +323,7 @@ RowLayout {
} }
Item { width: 1; height: 1 } Item { width: 1; height: 1 }
QGCLabel { text: qsTr("Saved Tuning Values:") } QGCLabel { text: qsTr("Clipboard Values:") }
GridLayout { GridLayout {
rows: savedRepeater.model.length rows: savedRepeater.model.length
...@@ -348,12 +348,12 @@ RowLayout { ...@@ -348,12 +348,12 @@ RowLayout {
spacing: _margins spacing: _margins
QGCButton { QGCButton {
text: qsTr("Save Values") text: qsTr("Save To Clipboard")
onClicked: saveTuningParamValues() onClicked: saveTuningParamValues()
} }
QGCButton { QGCButton {
text: qsTr("Reset To Saved Values") text: qsTr("Restore From Clipboard")
onClicked: resetToSavedTuningParamValues() onClicked: resetToSavedTuningParamValues()
} }
} }
......
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