Corrected bug with hex viewer in memory inspection pane remaining disabled upon activation
This commit is contained in:
@@ -437,8 +437,8 @@ namespace Bloom::Widgets
|
|||||||
using Targets::TargetState;
|
using Targets::TargetState;
|
||||||
this->targetState = newState;
|
this->targetState = newState;
|
||||||
|
|
||||||
if (newState == TargetState::STOPPED && this->state.activated) {
|
if (newState == TargetState::STOPPED) {
|
||||||
if (this->settings.refreshOnTargetStop || !this->data.has_value()) {
|
if (this->state.activated && (this->settings.refreshOnTargetStop || !this->data.has_value())) {
|
||||||
this->refreshMemoryValues([this] {
|
this->refreshMemoryValues([this] {
|
||||||
this->hexViewerWidget->setDisabled(false);
|
this->hexViewerWidget->setDisabled(false);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user