Commit 1067b01f authored by DonLakeFlyer's avatar DonLakeFlyer

parent 788ec028
......@@ -24,6 +24,8 @@ Column {
SectionHeader {
id: cameraSectionHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Camera")
checked: false
}
......
......@@ -125,6 +125,8 @@ Rectangle {
SectionHeader {
id: corridorHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Corridor")
}
......@@ -183,6 +185,8 @@ Rectangle {
SectionHeader {
id: terrainHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Terrain")
checked: missionItem.followTerrain
}
......@@ -229,6 +233,8 @@ Rectangle {
SectionHeader {
id: statsHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Statistics")
}
......
......@@ -53,6 +53,8 @@ Rectangle {
SectionHeader {
id: loiterPointSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Loiter point")
}
......@@ -102,6 +104,8 @@ Rectangle {
SectionHeader {
id: landingPointSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Landing point")
}
......@@ -182,6 +186,8 @@ Rectangle {
SectionHeader {
id: cameraSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Camera")
visible: _showCameraSection
}
......
......@@ -111,6 +111,8 @@ QGCFlickable {
SectionHeader {
id: insertSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Insert GeoFence")
}
......@@ -140,6 +142,8 @@ QGCFlickable {
SectionHeader {
id: polygonSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Polygon Fences")
}
......@@ -213,6 +217,8 @@ QGCFlickable {
SectionHeader {
id: circleSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Circular Fences")
}
......@@ -303,6 +309,8 @@ QGCFlickable {
SectionHeader {
id: breachReturnSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Breach Return Point")
}
......
......@@ -109,6 +109,8 @@ Rectangle {
SectionHeader {
id: missionEndHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Mission End")
checked: true
}
......@@ -129,6 +131,8 @@ Rectangle {
SectionHeader {
id: vehicleInfoSectionHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Vehicle Info")
visible: _offlineEditing && !_waypointsOnlyMode
checked: false
......@@ -193,6 +197,8 @@ Rectangle {
SectionHeader {
id: plannedHomePositionSection
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Planned Home Position")
visible: !_vehicleHasHomePosition
checked: false
......
......@@ -131,6 +131,8 @@ Rectangle {
SectionHeader {
id: scanHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Scan")
}
......@@ -201,6 +203,8 @@ Rectangle {
SectionHeader {
id: statsHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Statistics")
}
......
......@@ -125,6 +125,8 @@ Rectangle {
SectionHeader {
id: transectsHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Transects")
}
......@@ -234,6 +236,8 @@ Rectangle {
SectionHeader {
id: terrainHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Terrain")
checked: missionItem.followTerrain
}
......@@ -281,6 +285,8 @@ Rectangle {
SectionHeader {
id: statsHeader
anchors.left: parent.left
anchors.right: parent.right
text: qsTr("Statistics")
}
......@@ -357,8 +363,6 @@ Rectangle {
SectionHeader {
id: presectsTransectsHeader
anchors.left: undefined
anchors.right: undefined
Layout.fillWidth: true
text: qsTr("Transects")
}
......@@ -401,8 +405,6 @@ Rectangle {
SectionHeader {
id: presetsStatsHeader
anchors.left: undefined
anchors.right: undefined
Layout.fillWidth: true
text: qsTr("Statistics")
}
......
......@@ -174,6 +174,8 @@ Item {
SectionHeader {
id: categoryHeader
anchors.left: parent.left
anchors.right: parent.right
text: category
checked: controller.currentCategory === text
exclusiveGroup: sectionGroup
......
......@@ -44,6 +44,8 @@ Column {
SectionHeader {
id: header
anchors.left: parent.left
anchors.right: parent.right
text: name + (passed ? qsTr(" (passed)") : "")
}
......
......@@ -8,8 +8,6 @@ import QGroundControl.Palette 1.0
FocusScope {
id: _root
anchors.left: parent.left
anchors.right: parent.right
height: column.height
property alias text: label.text
......
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