Improved library style.

This commit is contained in:
The Wobbler 2024-12-22 21:20:18 +01:00
parent 2f0c01601d
commit 368bbbe6f8
5 changed files with 40 additions and 15 deletions

11
wobuzz/ui/lines.py Normal file
View file

@ -0,0 +1,11 @@
#!/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)