diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp index eb55a12c..7740baa3 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp @@ -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); } }