diff --git a/src/Config.h b/src/Config.h index f6aead69..c1f22fb2 100644 --- a/src/Config.h +++ b/src/Config.h @@ -30,7 +30,7 @@ #define VER_LAMEXP_MINOR_LO 4 #define VER_LAMEXP_TYPE Beta #define VER_LAMEXP_PATCH 7 -#define VER_LAMEXP_BUILD 912 +#define VER_LAMEXP_BUILD 914 /////////////////////////////////////////////////////////////////////////////// // Tool versions (minimum expected versions!) diff --git a/src/Dialog_SplashScreen.cpp b/src/Dialog_SplashScreen.cpp index 130c1042..d68df630 100644 --- a/src/Dialog_SplashScreen.cpp +++ b/src/Dialog_SplashScreen.cpp @@ -117,16 +117,20 @@ void SplashScreen::showSplash(QThread *thread) //Start the timer timer->start(30720); - //Loop while thread is running + //Loop while thread is still running while(thread->isRunning()) { loop->exec(); if(thread->isRunning()) { - qWarning("Potential deadlock in initialization thread!"); + QThread::yieldCurrentThread(); + if(thread->isRunning()) + { + qWarning("Potential deadlock in initialization thread!"); + } } } - + //Stop the timer timer->stop();