diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp index 673e3bea0ae..dfcc80d6c59 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizardfactory.cpp @@ -513,6 +513,9 @@ FilePaths &JsonWizardFactory::searchPaths() Core::ICore::resourcePath(WIZARD_PATH)}; for (const QString &environmentTemplateDirName : environmentTemplatesPaths()) m_searchPaths << FilePath::fromString(environmentTemplateDirName); + m_searchPaths << Utils::transform( + Core::ICore::settings()->value("Wizards/SearchPaths").toStringList(), + [](const QString &s) { return FilePath::fromUserInput(s); }); } return m_searchPaths;