Commit 45c8b8ea authored by DonLakeFlyer's avatar DonLakeFlyer

Button name changes

parent d6685452
...@@ -525,14 +525,14 @@ Item { ...@@ -525,14 +525,14 @@ Item {
QGCButton { QGCButton {
_horizontalPadding: 0 _horizontalPadding: 0
text: qsTr("Basic Polygon") text: qsTr("Basic")
visible: !_traceMode visible: !_traceMode
onClicked: _resetPolygon() onClicked: _resetPolygon()
} }
QGCButton { QGCButton {
_horizontalPadding: 0 _horizontalPadding: 0
text: qsTr("Circular Polygon") text: qsTr("Circular")
visible: !_traceMode visible: !_traceMode
onClicked: _resetCircle() onClicked: _resetCircle()
} }
......
...@@ -323,14 +323,14 @@ Item { ...@@ -323,14 +323,14 @@ Item {
QGCButton { QGCButton {
_horizontalPadding: 0 _horizontalPadding: 0
text: qsTr("Basic Corridor") text: qsTr("Basic")
visible: !_traceMode visible: !_traceMode
onClicked: _resetPolyline() onClicked: _resetPolyline()
} }
QGCButton { QGCButton {
_horizontalPadding: 0 _horizontalPadding: 0
text: _traceMode ? qsTr("Done Tracing") : qsTr("Trace Corridor") text: _traceMode ? qsTr("Done Tracing") : qsTr("Trace")
onClicked: { onClicked: {
if (_traceMode) { if (_traceMode) {
if (mapPolyline.count < 2) { if (mapPolyline.count < 2) {
......
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