diff --git a/.gitignore b/.gitignore index b532a7a..cf6d5d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,10 @@ icons/ -*.swp + +# Ignore .nfs files that occasionally show up .nfs* + +# Ignore Vim swap files +*.swp +*.swo +*~ + diff --git a/src/SeerCommandLogsWidget.cpp b/src/SeerCommandLogsWidget.cpp index 4e4e9df..1332f59 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);