Browse Source

LogReplayStatusBar: Implement 10x log replay speed

Another user requested this feature here:

https://github.com/mavlink/qgroundcontrol/issues/8557

And actually tested it for a year.
QGC4.4
Philipp Borgers 3 years ago committed by Beat Küng
parent
commit
3eea902255
  1. 1
      src/QmlControls/LogReplayStatusBar.qml

1
src/QmlControls/LogReplayStatusBar.qml

@ -69,6 +69,7 @@ Rectangle {
ListElement { text: "1x"; value: 1 } ListElement { text: "1x"; value: 1 }
ListElement { text: "2x"; value: 2 } ListElement { text: "2x"; value: 2 }
ListElement { text: "5x"; value: 5 } ListElement { text: "5x"; value: 5 }
ListElement { text: "10x"; value: 10 }
} }
onActivated: controller.playbackSpeed = model.get(currentIndex).value onActivated: controller.playbackSpeed = model.get(currentIndex).value

Loading…
Cancel
Save