Browse Source

Merge pull request #8014 from DonLakeFlyer/ToolNames

Polygon/Line tool name changes
QGC4.4
Don Gagne 6 years ago committed by GitHub
parent
commit
8ac56bc218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/MissionManager/QGCMapPolygonVisuals.qml
  2. 2
      src/MissionManager/QGCMapPolylineVisuals.qml
  3. 2
      src/PlanView/CorridorScanEditor.qml

2
src/MissionManager/QGCMapPolygonVisuals.qml

@ -538,7 +538,7 @@ Item { @@ -538,7 +538,7 @@ Item {
QGCButton {
_horizontalPadding: 0
text: _traceMode ? qsTr("Done Tracing") : qsTr("Trace Polygon")
text: _traceMode ? qsTr("Done Tracing") : qsTr("Trace")
onClicked: {
if (_traceMode) {
if (mapPolygon.count < 3) {

2
src/MissionManager/QGCMapPolylineVisuals.qml

@ -38,7 +38,7 @@ Item { @@ -38,7 +38,7 @@ Item {
property real _zorderSplitHandle: QGroundControl.zOrderMapItems + 2
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.")
function _addCommonVisuals() {

2
src/PlanView/CorridorScanEditor.qml

@ -65,7 +65,7 @@ Rectangle { @@ -65,7 +65,7 @@ Rectangle {
QGCLabel {
Layout.fillWidth: true
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 {

Loading…
Cancel
Save