Browse Source

Fixing case for consistency.

QGC4.4
Gus Grubba 8 years ago
parent
commit
02f0478deb
  1. 4
      src/AutoPilotPlugins/PX4/SafetyComponent.qml
  2. 2
      src/QtLocationPlugin/QMLControl/OfflineMap.qml

4
src/AutoPilotPlugins/PX4/SafetyComponent.qml

@ -290,7 +290,7 @@ SetupPage { @@ -290,7 +290,7 @@ SetupPage {
QGCCheckBox {
id: fenceRadiusCheckBox
text: qsTr("Max radius:")
text: qsTr("Max Radius:")
checked: _fenceRadius.value > 0
onClicked: _fenceRadius.value = checked ? 100 : 0
Layout.fillWidth: true
@ -303,7 +303,7 @@ SetupPage { @@ -303,7 +303,7 @@ SetupPage {
QGCCheckBox {
id: fenceAltMaxCheckBox
text: qsTr("Max altitude:")
text: qsTr("Max Altitude:")
checked: _fenceAlt ? _fenceAlt.value > 0 : false
onClicked: _fenceAlt.value = checked ? 100 : 0
Layout.fillWidth: true

2
src/QtLocationPlugin/QMLControl/OfflineMap.qml

@ -899,7 +899,7 @@ QGCView { @@ -899,7 +899,7 @@ QGCView {
anchors.horizontalCenter: parent.horizontalCenter
OfflineMapButton {
id: firstButton
text: qsTr("Add new set")
text: qsTr("Add New Set")
width: _cacheList.width
height: ScreenTools.defaultFontPixelHeight * 2
onClicked: {

Loading…
Cancel
Save