diff --git a/src/plugins/studiowelcome/studiowelcomeplugin.cpp b/src/plugins/studiowelcome/studiowelcomeplugin.cpp index 67d02c78f72..53f6e25a7fc 100644 --- a/src/plugins/studiowelcome/studiowelcomeplugin.cpp +++ b/src/plugins/studiowelcome/studiowelcomeplugin.cpp @@ -549,7 +549,9 @@ bool StudioWelcomePlugin::initialize(const QStringList &arguments, QString *erro m_welcomeMode = new WelcomeMode; m_removeSplashTimer.setSingleShot(true); - m_removeSplashTimer.setInterval(15000); + const QString splashScreenTimeoutEntry = "QML/Designer/splashScreenTimeout"; + m_removeSplashTimer.setInterval( + Core::ICore::settings()->value(splashScreenTimeoutEntry, 15000).toInt()); connect(&m_removeSplashTimer, &QTimer::timeout, this, [this] { closeSplashScreen(); }); return true; }