Browse Source

src: FlyViewVideo: Remove Double-click text after 10 seconds

People wants to usue fullscreen without some text on the mididle of the screen,
10 seconds is enough to get the message.

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
QGC4.4
Patrick José Pereira 3 years ago
parent
commit
61f9c2cd02
  1. 14
      src/FlightDisplay/FlyViewVideo.qml

14
src/FlightDisplay/FlyViewVideo.qml

@ -69,6 +69,20 @@ Item {
font.pointSize: ScreenTools.largeFontPointSize font.pointSize: ScreenTools.largeFontPointSize
visible: QGroundControl.videoManager.fullScreen && flyViewVideoMouseArea.containsMouse visible: QGroundControl.videoManager.fullScreen && flyViewVideoMouseArea.containsMouse
anchors.centerIn: parent anchors.centerIn: parent
onVisibleChanged: {
if (visible) {
labelAnimation.start()
}
}
PropertyAnimation on opacity {
id: labelAnimation
duration: 10000
from: 1.0
to: 0.0
easing.type: Easing.InExpo
}
} }
MouseArea { MouseArea {

Loading…
Cancel
Save