Browse Source

MainWindow: make PFD the central widget.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
QGC4.4
Koen Kooi 11 years ago
parent
commit
287d75ac85
  1. 2
      src/ui/MainWindow.cc

2
src/ui/MainWindow.cc

@ -556,7 +556,7 @@ void MainWindow::buildCommonWidgets()
{ {
pilotView = new SubMainWindow(this); pilotView = new SubMainWindow(this);
pilotView->setObjectName("VIEW_FLIGHT"); pilotView->setObjectName("VIEW_FLIGHT");
pilotView->setCentralWidget(new HUD(640,480,this)); pilotView->setCentralWidget(new PrimaryFlightDisplay(this));
addToCentralStackedWidget(pilotView, VIEW_FLIGHT, "Pilot"); addToCentralStackedWidget(pilotView, VIEW_FLIGHT, "Pilot");
} }

Loading…
Cancel
Save