From 40ee3df836d903ecea4b98a751ad9b1d98e56e01 Mon Sep 17 00:00:00 2001 From: Nav Date: Sun, 7 Nov 2021 20:33:23 +0000 Subject: [PATCH] Fixed bug with bottom panel size constraints not being updated on target package widget change --- src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp index 36a5ac8e..92020581 100644 --- a/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/InsightWindow.cpp @@ -373,7 +373,7 @@ void InsightWindow::selectVariant(const TargetVariant* variant) { this->targetPackageWidget->height() + 450 ); - this->adjustSize(); + this->adjustPanels(); this->targetPackageWidget->show(); } }