Corrected regression bug with disabling the insight UI when target enters running state
This commit is contained in:
@@ -169,6 +169,7 @@ void InsightWindow::onTargetStateUpdate(TargetState newState) {
|
|||||||
if (newState == TargetState::RUNNING) {
|
if (newState == TargetState::RUNNING) {
|
||||||
this->targetStatusLabel->setText("Running");
|
this->targetStatusLabel->setText("Running");
|
||||||
this->programCounterValueLabel->setText("-");
|
this->programCounterValueLabel->setText("-");
|
||||||
|
this->toggleUi(true);
|
||||||
|
|
||||||
} else if (newState == TargetState::STOPPED) {
|
} else if (newState == TargetState::STOPPED) {
|
||||||
this->targetStatusLabel->setText("Stopped");
|
this->targetStatusLabel->setText("Stopped");
|
||||||
|
|||||||
Reference in New Issue
Block a user