Commit 02f0478d authored by Gus Grubba's avatar Gus Grubba

Fixing case for consistency.

parent 12785a32
...@@ -290,7 +290,7 @@ SetupPage { ...@@ -290,7 +290,7 @@ SetupPage {
QGCCheckBox { QGCCheckBox {
id: fenceRadiusCheckBox id: fenceRadiusCheckBox
text: qsTr("Max radius:") text: qsTr("Max Radius:")
checked: _fenceRadius.value > 0 checked: _fenceRadius.value > 0
onClicked: _fenceRadius.value = checked ? 100 : 0 onClicked: _fenceRadius.value = checked ? 100 : 0
Layout.fillWidth: true Layout.fillWidth: true
...@@ -303,7 +303,7 @@ SetupPage { ...@@ -303,7 +303,7 @@ SetupPage {
QGCCheckBox { QGCCheckBox {
id: fenceAltMaxCheckBox id: fenceAltMaxCheckBox
text: qsTr("Max altitude:") text: qsTr("Max Altitude:")
checked: _fenceAlt ? _fenceAlt.value > 0 : false checked: _fenceAlt ? _fenceAlt.value > 0 : false
onClicked: _fenceAlt.value = checked ? 100 : 0 onClicked: _fenceAlt.value = checked ? 100 : 0
Layout.fillWidth: true Layout.fillWidth: true
......
...@@ -899,7 +899,7 @@ QGCView { ...@@ -899,7 +899,7 @@ QGCView {
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
OfflineMapButton { OfflineMapButton {
id: firstButton id: firstButton
text: qsTr("Add new set") text: qsTr("Add New Set")
width: _cacheList.width width: _cacheList.width
height: ScreenTools.defaultFontPixelHeight * 2 height: ScreenTools.defaultFontPixelHeight * 2
onClicked: { onClicked: {
......
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