Disable refresh button on memory inspection pane, when target goes into running mode

This commit is contained in:
Nav
2022-09-03 20:33:49 +01:00
parent f113fca8ac
commit bd2af015ec

View File

@@ -397,10 +397,12 @@ namespace Bloom::Widgets
} else {
this->hexViewerWidget->setDisabled(false);
this->refreshButton->setDisabled(false);
}
} else if (newState == TargetState::RUNNING) {
this->hexViewerWidget->setDisabled(true);
this->refreshButton->setDisabled(true);
}
}