Unverified Commit 8ac56bc2 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8014 from DonLakeFlyer/ToolNames

Polygon/Line tool name changes
parents bffdc8d0 31ce7c04
...@@ -538,7 +538,7 @@ Item { ...@@ -538,7 +538,7 @@ Item {
QGCButton { QGCButton {
_horizontalPadding: 0 _horizontalPadding: 0
text: _traceMode ? qsTr("Done Tracing") : qsTr("Trace Polygon") text: _traceMode ? qsTr("Done Tracing") : qsTr("Trace")
onClicked: { onClicked: {
if (_traceMode) { if (_traceMode) {
if (mapPolygon.count < 3) { if (mapPolygon.count < 3) {
......
...@@ -38,7 +38,7 @@ Item { ...@@ -38,7 +38,7 @@ Item {
property real _zorderSplitHandle: QGroundControl.zOrderMapItems + 2 property real _zorderSplitHandle: QGroundControl.zOrderMapItems + 2
property var _savedVertices: [ ] property var _savedVertices: [ ]
readonly property string _corridorToolsText: qsTr("Corridor Tools") readonly property string _corridorToolsText: qsTr("Polyline Tools")
readonly property string _traceText: qsTr("Click in the map to add vertices. Click 'Done Tracing' when finished.") readonly property string _traceText: qsTr("Click in the map to add vertices. Click 'Done Tracing' when finished.")
function _addCommonVisuals() { function _addCommonVisuals() {
......
...@@ -65,7 +65,7 @@ Rectangle { ...@@ -65,7 +65,7 @@ Rectangle {
QGCLabel { QGCLabel {
Layout.fillWidth: true Layout.fillWidth: true
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
text: qsTr("Use the Corridor Tools to create the polyline which defines the corridor.") text: qsTr("Use the Polyline Tools to create the polyline which defines the corridor.")
} }
QGCButton { QGCButton {
......
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