diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegistersPane/RegisterWidget.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegistersPane/RegisterWidget.cpp index 6f8f22b5..dd4cc204 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegistersPane/RegisterWidget.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegistersPane/RegisterWidget.cpp @@ -110,7 +110,12 @@ void RegisterWidget::openInspectionWindow() { this->inspectWindow->setValue(this->currentRegister->value); } - this->inspectWindow->show(); + if (!this->inspectWindow->isVisible()) { + this->inspectWindow->show(); + + } else { + this->inspectWindow->activateWindow(); + } } }