ExtensionManager: Hide all details if no extension is selected

Change-Id: I87b901d474ae438c87d26cfa12a644398fd1f950
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
Alessandro Portale
2024-06-25 18:38:00 +02:00
parent 030e3c2cd5
commit 6a192bcce8

View File

@@ -550,6 +550,8 @@ void ExtensionManagerWidget::updateView(const QModelIndex &current)
const bool showContent = current.isValid(); const bool showContent = current.isValid();
d->primaryContent->setVisible(showContent); d->primaryContent->setVisible(showContent);
d->secondaryContent->setVisible(showContent); d->secondaryContent->setVisible(showContent);
d->headingWidget->setVisible(showContent);
d->pluginStatus->setVisible(showContent);
if (!showContent) if (!showContent)
return; return;