Added a dock widget that shows background processes.

This commit is contained in:
The Wobbler 2025-02-03 14:08:19 +01:00
parent 67c3b9e226
commit c55c1222f0
7 changed files with 135 additions and 7 deletions

View file

@ -11,12 +11,6 @@ class LibraryDock(QDockWidget):
self.library = library
self.setAllowedAreas(
Qt.DockWidgetArea.LeftDockWidgetArea |
Qt.DockWidgetArea.RightDockWidgetArea |
Qt.DockWidgetArea.BottomDockWidgetArea
)
self.setAcceptDrops(True)
self.library_widget = Library(library, self)