mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 04:52:14 -07:00
9 lines
362 B
Python
9 lines
362 B
Python
from PyQt6.QtGui import *
|
|
from PyQt6.QtWidgets import *
|
|
|
|
from .QXWidget import QXWidget
|
|
from .QXHBoxLayout import QXHBoxLayout
|
|
|
|
class QXWidgetHBox(QXWidget):
|
|
def __init__(self, widgets=None, contents_margins=0, spacing=0, **kwargs):
|
|
super().__init__(layout=QXHBoxLayout(widgets=widgets, contents_margins=contents_margins, spacing=spacing), **kwargs)
|