Merge pull request #4744 from Chocobo1/splash_scrn

Fix potential race condition in showSplashScreen()
This commit is contained in:
sledgehammer999
2016-02-09 09:50:22 -06:00
2 changed files with 2 additions and 2 deletions

View File

@@ -355,7 +355,7 @@ void Preferences::setStartMinimized(bool b)
bool Preferences::isSplashScreenDisabled() const
{
return value("Preferences/General/NoSplashScreen", false).toBool();
return value("Preferences/General/NoSplashScreen", true).toBool();
}
void Preferences::setSplashScreenDisabled(bool b)