Commit e9e36e41 authored by Michael Carpenter's avatar Michael Carpenter

Fix for a couple of floating windows that shouldn't have been shown

parent 140d1ffa
......@@ -538,7 +538,7 @@ void MainWindow::buildCommonWidgets()
{
debugConsole = new DebugConsole();
debugConsole->setWindowTitle("Communications Console");
debugConsole->show();
debugConsole->hide();
QAction* tempAction = ui.menuTools->addAction(tr("Communication Console"));
//menuToDockNameMap[tempAction] = "COMMUNICATION_DEBUG_CONSOLE_DOCKWIDGET";
tempAction->setCheckable(true);
......
......@@ -4,7 +4,7 @@ QGCTabbedInfoView::QGCTabbedInfoView(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
actionsWidget = new UASActionsWidget(this);
quickView = new UASQuickView(this);\
quickView = new UASQuickView(this);
rawView = new UASRawStatusView(this);
ui.tabWidget->addTab(quickView,"Quick");
ui.tabWidget->addTab(actionsWidget,"Actions");
......
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