From 6a192bcce8ab9e07f9a006470235342928e8354b Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Tue, 25 Jun 2024 18:38:00 +0200 Subject: [PATCH] ExtensionManager: Hide all details if no extension is selected Change-Id: I87b901d474ae438c87d26cfa12a644398fd1f950 Reviewed-by: Cristian Adam --- src/plugins/extensionmanager/extensionmanagerwidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/extensionmanager/extensionmanagerwidget.cpp b/src/plugins/extensionmanager/extensionmanagerwidget.cpp index a7caa5f2e11..4b0bfcfb325 100644 --- a/src/plugins/extensionmanager/extensionmanagerwidget.cpp +++ b/src/plugins/extensionmanager/extensionmanagerwidget.cpp @@ -550,6 +550,8 @@ void ExtensionManagerWidget::updateView(const QModelIndex ¤t) const bool showContent = current.isValid(); d->primaryContent->setVisible(showContent); d->secondaryContent->setVisible(showContent); + d->headingWidget->setVisible(showContent); + d->pluginStatus->setVisible(showContent); if (!showContent) return;