From ca757f8fce3e916fbf4ddcd198b28611e623fc60 Mon Sep 17 00:00:00 2001 From: Nav Date: Wed, 8 Dec 2021 00:17:30 +0000 Subject: [PATCH] Corrected regression bug with disabling the insight UI when target enters running state --- src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index 5bfad1b9..8e6c14b0 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -169,6 +169,7 @@ void InsightWindow::onTargetStateUpdate(TargetState newState) { if (newState == TargetState::RUNNING) { this->targetStatusLabel->setText("Running"); this->programCounterValueLabel->setText("-"); + this->toggleUi(true); } else if (newState == TargetState::STOPPED) { this->targetStatusLabel->setText("Stopped");