Browse Source

MainRootWindow: fix bug toolbar dissapearing:

In the edge scenario where we set video view in full screen
and for some reason QGC brings us to setup view ( if the
vehicle has calibration/setup pending ) the toolbar would
dissapear, thus not being able to get out of that state
QGC4.4
davidsastresas 2 years ago committed by Philipp Borgers
parent
commit
f5d9340e88
  1. 2
      src/ui/MainRootWindow.qml

2
src/ui/MainRootWindow.qml

@ -264,7 +264,7 @@ ApplicationWindow { @@ -264,7 +264,7 @@ ApplicationWindow {
header: MainToolBar {
id: toolbar
height: ScreenTools.toolbarHeight
visible: !QGroundControl.videoManager.fullScreen
visible: !(QGroundControl.videoManager.fullScreen && flightView.visible)
}
footer: LogReplayStatusBar {

Loading…
Cancel
Save