From 332a26afbb966cf60871007dce5b0a95efc11ead Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 6 Nov 2021 00:19:26 +0000 Subject: [PATCH] Corrected EEPROM button initialising --- src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index b0f07a77..36a5ac8e 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -542,8 +542,8 @@ void InsightWindow::activate() { ); bottomPanelLayout->addWidget(this->eepromInspectionPane); this->eepromInspectionPane->deactivate(); - this->ramInspectionButton->setChecked(false); - this->ramInspectionButton->setDisabled(false); + this->eepromInspectionButton->setChecked(false); + this->eepromInspectionButton->setDisabled(false); } this->toggleUi(this->targetState != TargetState::STOPPED);