Skip to content
Snippets Groups Projects
Commit fded5933 authored by Dimitar Tasev's avatar Dimitar Tasev
Browse files

Add new scaled higher res image for 4k, re #23814

parent 9b050651
No related branches found
No related tags found
No related merge requests found
images/MantidSplashScreen_2400x1758.jpg

1.8 MiB

images/MantidSplashScreen_4k.jpg

112 KiB

<!DOCTYPE RCC><RCC version="1.0"> <!DOCTYPE RCC><RCC version="1.0">
<qresource prefix="/images"> <qresource prefix="/images">
<file alias="MantidSplashScreen.png">../../../images/MantidSplashScreen.png</file> <file alias="MantidSplashScreen.png">../../../images/MantidSplashScreen.png</file>
<file alias="MantidSplashScreen_4k.jpg">../../../images/MantidSplashScreen_4k.jpg</file>
</qresource> </qresource>
</RCC> </RCC>
\ No newline at end of file
...@@ -84,11 +84,11 @@ MAIN_APP = qapplication() ...@@ -84,11 +84,11 @@ MAIN_APP = qapplication()
from workbench.app.resources import qCleanupResources # noqa from workbench.app.resources import qCleanupResources # noqa
atexit.register(qCleanupResources) atexit.register(qCleanupResources)
SPLASH = QSplashScreen(QPixmap(':/images/MantidSplashScreen.png'), SPLASH = QSplashScreen(QPixmap(':/images/MantidSplashScreen_4k.jpg'),
Qt.WindowStaysOnTopHint) Qt.WindowStaysOnTopHint)
SPLASH.show() SPLASH.show()
SPLASH.showMessage("Starting...", Qt.AlignBottom | Qt.AlignLeft | SPLASH.showMessage("Starting...", Qt.AlignBottom | Qt.AlignLeft
Qt.AlignAbsolute, QColor(Qt.black)) | Qt.AlignAbsolute, QColor(Qt.black))
# The event loop has not started - force event processing # The event loop has not started - force event processing
QApplication.processEvents(QEventLoop.AllEvents) QApplication.processEvents(QEventLoop.AllEvents)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment