mirror of
https://github.com/iperov/DeepFaceLive.git
synced 2024-12-25 15:31:13 -08:00
14 lines
346 B
Python
14 lines
346 B
Python
from PyQt6.QtCore import *
|
|
from PyQt6.QtGui import *
|
|
from PyQt6.QtWidgets import *
|
|
from .QXWindow import QXWindow
|
|
|
|
class QXPopupWindow(QXWindow):
|
|
def __init__(self, **kwargs):
|
|
"""
|
|
represents top widget which has no parent
|
|
"""
|
|
super().__init__(**kwargs)
|
|
self.setWindowFlags(Qt.WindowType.Popup)
|
|
|