Commit f1b68b50 authored by tstellanova's avatar tstellanova

hide Status and Actions widgets for now

parent 82afc8ed
...@@ -4,18 +4,18 @@ QGCTabbedInfoView::QGCTabbedInfoView(QWidget *parent) : QWidget(parent) ...@@ -4,18 +4,18 @@ QGCTabbedInfoView::QGCTabbedInfoView(QWidget *parent) : QWidget(parent)
{ {
ui.setupUi(this); ui.setupUi(this);
messageView = new QGCMessageView(this); messageView = new QGCMessageView(this);
actionsWidget = new UASActionsWidget(this); //actionsWidget = new UASActionsWidget(this);
quickView = new UASQuickView(this); quickView = new UASQuickView(this);
rawView = new UASRawStatusView(this); //rawView = new UASRawStatusView(this);
ui.tabWidget->addTab(quickView,"Quick"); ui.tabWidget->addTab(quickView,"Quick");
ui.tabWidget->addTab(actionsWidget,"Actions"); //ui.tabWidget->addTab(actionsWidget,"Actions");
ui.tabWidget->addTab(rawView,"Status"); //ui.tabWidget->addTab(rawView,"Status");
ui.tabWidget->addTab(messageView,"Messages"); ui.tabWidget->addTab(messageView,"Messages");
} }
void QGCTabbedInfoView::addSource(MAVLinkDecoder *decoder) void QGCTabbedInfoView::addSource(MAVLinkDecoder *decoder)
{ {
m_decoder = decoder; m_decoder = decoder;
rawView->addSource(decoder); //rawView->addSource(decoder);
quickView->addSource(decoder); quickView->addSource(decoder);
} }
......
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