Merge pull request #432 from epasveer/431-raise-message-tab-broken

Fix regression for message tab raising.
This commit is contained in:
Ernie Pasveer
2026-02-07 11:18:09 -06:00
committed by GitHub
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -1 +1,7 @@
icons/
# Ignore Vim swap files
*.swp
*.swo
*~
+1
View File
@@ -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<int>::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);