SplashScreen : Add "ShowSplasherMessages" parameter to disable labels from the splashscreen.

This commit is contained in:
Paddle
2023-10-30 15:42:43 +01:00
committed by wwmayer
parent 8239483c35
commit d3235e0c3a
3 changed files with 16 additions and 1 deletions

View File

@@ -250,6 +250,14 @@ void SplashScreen::drawContents ( QPainter * painter )
QSplashScreen::drawContents(painter);
}
void SplashScreen::setShowMessages(bool on)
{
messages->bErr = on;
messages->bMsg = on;
messages->bLog = on;
messages->bWrn = on;
}
// ------------------------------------------------------------------------------
AboutDialogFactory* AboutDialogFactory::factory = nullptr;