diff --git a/.gitignore b/.gitignore index bccc7f9..431dcd7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ icons/ + +# Ignore Vim swap files +*.swp +*.swo +*~ + diff --git a/src/SeerCommandLogsWidget.cpp b/src/SeerCommandLogsWidget.cpp index 0a336d5..4c4d255 100644 --- a/src/SeerCommandLogsWidget.cpp +++ b/src/SeerCommandLogsWidget.cpp @@ -82,6 +82,7 @@ SeerCommandLogsWidget::SeerCommandLogsWidget (QWidget* parent) : QWidget(parent) QObject::connect(logsTabWidget->tabBar(), &QTabBar::currentChanged, this, &SeerCommandLogsWidget::handleLogsTabChanged); QObject::connect(manualCommandComboBox->lineEdit(), &QLineEdit::returnPressed, this, &SeerCommandLogsWidget::handleManualCommandExecute); QObject::connect(manualCommandComboBox, QOverload::of(&QComboBox::activated), this, &SeerCommandLogsWidget::handleManualCommandChanged); + QObject::connect(_messagesBrowserWidget, &SeerMessagesBrowserWidget::showMessages, this, &SeerCommandLogsWidget::handleRaiseMessageTab); QObject::connect(_gdbOutputLog, &SeerLogWidget::logEnabledChanged, this, &SeerCommandLogsWidget::handleLogOutputChanged); QObject::connect(_gdbOutputLog, &SeerLogWidget::logTimeStampChanged, this, &SeerCommandLogsWidget::handleLogOutputChanged); QObject::connect(_seerOutputLog, &SeerLogWidget::logEnabledChanged, this, &SeerCommandLogsWidget::handleLogOutputChanged);