Browse Source

Hide record button when video window pip is hidden

QGC4.4
Jacob Walser 8 years ago
parent
commit
6c4028206d
  1. 2
      src/FlightDisplay/FlightDisplayView.qml

2
src/FlightDisplay/FlightDisplayView.qml

@ -374,7 +374,7 @@ QGCView { @@ -374,7 +374,7 @@ QGCView {
anchors.right: _flightVideo.right
height: ScreenTools.defaultFontPixelHeight * 2
width: height
visible: _videoReceiver && _videoReceiver.videoRunning && QGroundControl.settingsManager.videoSettings.showRecControl.rawValue
visible: _videoReceiver && _videoReceiver.videoRunning && QGroundControl.settingsManager.videoSettings.showRecControl.rawValue && _flightVideo.visible
opacity: 0.75
readonly property string recordBtnBackground: "BackgroundName"

Loading…
Cancel
Save