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
|
@ -1,12 +1,15 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtWidgets import QToolBox, QLabel
|
||||
from PyQt6.QtWidgets import QToolBox, QLabel, QFrame
|
||||
|
||||
|
||||
class Library(QToolBox):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
|
||||
self.setFrameShape(QFrame.Shape.Box)
|
||||
self.setFrameShadow(QFrame.Shadow.Sunken)
|
||||
|
||||
label = QLabel()
|
||||
self.addItem(label, "Playlists")
|
||||
label = QLabel()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue