diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp index 9c33f0cb..9f5d931a 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/TargetMemoryInspectionPane.cpp @@ -44,7 +44,9 @@ TargetMemoryInspectionPane::TargetMemoryInspectionPane( this->titleBar->layout()->setContentsMargins(7, 0, 7, 0); auto titleLabel = this->titleBar->findChild("title"); - titleLabel->setText("Internal RAM"); + titleLabel->setText( + this->targetMemoryDescriptor.type == TargetMemoryType::EEPROM ? "Internal EEPROM" : "Internal RAM" + ); auto subContainerLayout = this->container->findChild("sub-container-layout"); this->hexViewerWidget = new HexViewerWidget(this->targetMemoryDescriptor, this->insightWorker, this);