aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorAlessandro Portale <[email protected]>2024-06-25 18:38:00 +0200
committerAlessandro Portale <[email protected]>2024-06-25 17:06:42 +0000
commit6a192bcce8ab9e07f9a006470235342928e8354b (patch)
treeae504ea843f2a047cf7256a616de0f257cf36b76 /src/plugins
parent030e3c2cd5391a7d7d2ace8a1124c2f1b06f266b (diff)
ExtensionManager: Hide all details if no extension is selected
Change-Id: I87b901d474ae438c87d26cfa12a644398fd1f950 Reviewed-by: Cristian Adam <[email protected]>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/extensionmanager/extensionmanagerwidget.cpp2
1 files changed, 2 insertions, 0 deletions
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 &current)
const bool showContent = current.isValid();
d->primaryContent->setVisible(showContent);
d->secondaryContent->setVisible(showContent);
+ d->headingWidget->setVisible(showContent);
+ d->pluginStatus->setVisible(showContent);
if (!showContent)
return;