qds: remove redundant "QtStudio" feature

Nowadays, the decision which wizards will be shown are
done throw the StudioWelcome plugin if it is initialized or not.

Change-Id: Ief95fa8f813408522ac43c31dd6f4ffb069338d0
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tim Jenssen
2022-02-08 11:10:52 +01:00
committed by Thomas Hartmann
parent b82bb52183
commit f9cceb6267
25 changed files with 7 additions and 53 deletions

View File

@@ -70,8 +70,7 @@ void WizardFactories::filter()
{
QList<JsonWizardFactory *> acceptedFactories = Utils::filtered(m_factories, [&](auto *wizard) {
return wizard->isAvailable(m_platform)
&& wizard->kind() == JsonWizardFactory::ProjectWizard
&& wizard->requiredFeatures().contains("QtStudio");
&& wizard->kind() == JsonWizardFactory::ProjectWizard;
});
m_factories = acceptedFactories;