Skip to content

Commit

Permalink
Change splash screen font text to use pixel size
Browse files Browse the repository at this point in the history
  • Loading branch information
cvetan5 committed Nov 21, 2013
1 parent 6a68dbc commit 6576718
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Core/TundraCore/Framework/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,10 @@ void Application::InitializeSplash()
{
QString runDir = InstallationDirectory();
splashScreen = new QSplashScreen(QPixmap(runDir + "/data/ui/images/adminotech_tundra_splash.png"));
splashScreen->setFont(QFont("Calibri", 9));
QFont splashScreenFont("Calibri");
splashScreenFont.setPixelSize(12);

splashScreen->setFont(splashScreenFont);
splashScreen->show();
splashScreen->activateWindow();
#ifdef __APPLE__
Expand Down

0 comments on commit 6576718

Please sign in to comment.