Browse Source

Fix Time/Distance value visibility

QGC4.4
Don Gagne 8 years ago
parent
commit
ca9c0a7b40
  1. 4
      src/PlanView/CameraSection.qml

4
src/PlanView/CameraSection.qml

@ -46,7 +46,7 @@ Column { @@ -46,7 +46,7 @@ Column {
anchors.left: parent.left
anchors.right: parent.right
spacing: ScreenTools.defaultFontPixelWidth
visible: cameraActionCombo.currentIndex == 1
visible: _camera.cameraAction.rawValue == 1
QGCLabel {
text: qsTr("Time")
@ -62,7 +62,7 @@ Column { @@ -62,7 +62,7 @@ Column {
anchors.left: parent.left
anchors.right: parent.right
spacing: ScreenTools.defaultFontPixelWidth
visible: cameraActionCombo.currentIndex == 2
visible: _camera.cameraAction.rawValue == 2
QGCLabel {
text: qsTr("Distance")

Loading…
Cancel
Save