forked from Wobbl/Wobuzz
Improved library style.
This commit is contained in:
parent
2f0c01601d
commit
368bbbe6f8
5 changed files with 40 additions and 15 deletions
11
wobuzz/ui/lines.py
Normal file
11
wobuzz/ui/lines.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue