Wobuzz/wobuzz/ui/lines.py

11 lines
245 B
Python
Raw Permalink Normal View History

2024-12-22 21:20:18 +01:00
#!/usr/bin/python3
from PyQt6.QtWidgets import QFrame
class HLine(QFrame):
def __init__(self, parent=None):
super().__init__(parent)
self.setFrameShape(QFrame.Shape.HLine)
self.setFrameShadow(QFrame.Shadow.Sunken)