diff --git a/src/plugins/welcome/welcomeplugin.cpp b/src/plugins/welcome/welcomeplugin.cpp index 9487e7a407f..b3c70ed984d 100644 --- a/src/plugins/welcome/welcomeplugin.cpp +++ b/src/plugins/welcome/welcomeplugin.cpp @@ -356,12 +356,6 @@ void WelcomeMode::initPlugins() for (IWelcomePage *page : IWelcomePage::allWelcomePages()) addPage(page); - // make sure later added pages are made available too: - connect(PluginManager::instance(), &PluginManager::objectAdded, this, [this](QObject *obj) { - if (IWelcomePage *page = qobject_cast(obj)) - addPage(page); - }); - if (!m_activePage.isValid() && !m_pageButtons.isEmpty()) { m_activePage = m_pluginList.at(0)->id(); m_pageButtons.at(0)->click();