mirror of
https://github.com/iperov/DeepFaceLive.git
synced 2024-12-25 15:31:13 -08:00
10 lines
358 B
Python
10 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)
|