From 90dd76455df12b88baffead05640b6fbc280e502 Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 6 Nov 2021 00:18:54 +0000 Subject: [PATCH] Fixed bug with RAM & EEPROM panes both appearing on initial activation --- src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index 4e0fd7d0..b0f07a77 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -528,6 +528,7 @@ void InsightWindow::activate() { this->bottomPanel ); bottomPanelLayout->addWidget(this->ramInspectionPane); + this->ramInspectionPane->deactivate(); this->ramInspectionButton->setChecked(false); this->ramInspectionButton->setDisabled(false); } @@ -540,6 +541,7 @@ void InsightWindow::activate() { this->bottomPanel ); bottomPanelLayout->addWidget(this->eepromInspectionPane); + this->eepromInspectionPane->deactivate(); this->ramInspectionButton->setChecked(false); this->ramInspectionButton->setDisabled(false); }