Commit d890bbb0 authored by Don Gagne's avatar Don Gagne

Merge pull request #1377 from dogmaphobic/quickView

Fixing list of items in Quick Info View
parents 90e41336 0ad04664
......@@ -572,7 +572,9 @@ void MainWindow::_createInnerDockWidget(const QString& widgetName)
} else if (widgetName == _hudDockWidgetName) {
widget = new HUD(320,240,this);
} else if (widgetName == _uasInfoViewDockWidgetName) {
widget = new QGCTabbedInfoView(this);
QGCTabbedInfoView* pInfoView = new QGCTabbedInfoView(this);
pInfoView->addSource(mavlinkDecoder);
widget = pInfoView;
} else if (widgetName == _debugConsoleDockWidgetName) {
widget = new DebugConsole(this);
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment