mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 04:52:14 -07:00
11 lines
385 B
Python
11 lines
385 B
Python
from PyQt6.QtWidgets import *
|
|
|
|
from .QXLabel import QXLabel
|
|
|
|
|
|
class QXVerticalLine(QXLabel):
|
|
def __init__(self, thickness=1, color=None):
|
|
super().__init__(size_policy=(QSizePolicy.Policy.Fixed, QSizePolicy.Policy.Expanding),
|
|
fixed_size=(thickness,None) )
|
|
if color is not None:
|
|
self.setStyleSheet(f'background: {color.name()};')
|