diff options
author | Alessandro Portale <[email protected]> | 2024-06-25 18:38:00 +0200 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2024-06-25 17:06:42 +0000 |
commit | 6a192bcce8ab9e07f9a006470235342928e8354b (patch) | |
tree | ae504ea843f2a047cf7256a616de0f257cf36b76 /src/plugins | |
parent | 030e3c2cd5391a7d7d2ace8a1124c2f1b06f266b (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.cpp | 2 |
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 ¤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; |