mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 04:52:14 -07:00
19 lines
537 B
Python
19 lines
537 B
Python
from PyQt6.QtCore import *
|
|
from PyQt6.QtGui import *
|
|
from PyQt6.QtWidgets import *
|
|
|
|
from ._part_QXWidget import _part_QXWidget
|
|
|
|
|
|
class QXScrollArea(QScrollArea, _part_QXWidget):
|
|
def __init__(self, **kwargs):
|
|
super().__init__()
|
|
_part_QXWidget.__init__(self, **kwargs)
|
|
|
|
def focusInEvent(self, ev : QFocusEvent):
|
|
super().focusInEvent(ev)
|
|
_part_QXWidget.focusInEvent(self, ev)
|
|
|
|
def resizeEvent(self, ev : QResizeEvent):
|
|
super().resizeEvent(ev)
|
|
_part_QXWidget.resizeEvent(self, ev)
|