mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 13:02:16 -07:00
9 lines
358 B
Python
9 lines
358 B
Python
from PyQt6.QtGui import *
|
|
from PyQt6.QtWidgets import *
|
|
|
|
from .QXFrame import QXFrame
|
|
from .QXHBoxLayout import QXHBoxLayout
|
|
|
|
class QXFrameHBox(QXFrame):
|
|
def __init__(self, widgets=None, contents_margins=0, spacing=0, **kwargs):
|
|
super().__init__(layout=QXHBoxLayout(widgets=widgets, contents_margins=contents_margins, spacing=spacing), **kwargs)
|