From b5b1cc998c2fb0854f11950cc309141da5283388 Mon Sep 17 00:00:00 2001 From: Ernie Pasveer Date: Sat, 7 Feb 2026 11:13:21 -0600 Subject: [PATCH] Fix regression for message tab raising. --- .gitignore | 6 ++++++ src/SeerCommandLogsWidget.cpp | 1 + 2 files changed, 7 insertions(+) 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);