forked from Wobbl/Wobuzz
Added library template.
This commit is contained in:
parent
8811ba7ab4
commit
2f0c01601d
3 changed files with 44 additions and 3 deletions
13
wobuzz/ui/library_dock.py
Normal file
13
wobuzz/ui/library_dock.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtWidgets import QDockWidget, QHBoxLayout
|
||||
from.library import Library
|
||||
|
||||
|
||||
class LibraryDock(QDockWidget):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
|
||||
self.library = Library(self)
|
||||
self.setWidget(self.library)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue