Update splash screen

This commit is contained in:
Alex Spataru 2021-10-28 01:15:37 -05:00
parent d7e681d7e5
commit 4b6d02479f
5 changed files with 3 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 KiB

After

Width:  |  Height:  |  Size: 462 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 935 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 KiB

View File

@ -107,7 +107,9 @@ Misc::ModuleManager::ModuleManager()
qApp->setFont(font);
// Show splash screen
m_splash.setPixmap(QPixmap(":/images/splash.png"));
QPixmap splash(":/images/splash.png");
splash.setDevicePixelRatio(qApp->devicePixelRatio());
m_splash.setPixmap(splash);
m_splash.show();
// Stop modules when application is about to quit