mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 04:52:14 -07:00
13 lines
354 B
Python
13 lines
354 B
Python
from PyQt6.QtCore import *
|
|
from PyQt6.QtGui import *
|
|
from PyQt6.QtWidgets import *
|
|
from .QXWindow import QXWindow
|
|
|
|
class QXSplashWindow(QXWindow):
|
|
def __init__(self, **kwargs):
|
|
"""
|
|
represents top widget which has no parent
|
|
"""
|
|
super().__init__(**kwargs)
|
|
self.setWindowFlags(Qt.WindowType.SplashScreen)
|
|
|