Implemented displaying of tracks in a QTreeWidget.
This commit is contained in:
parent
10c36b37a1
commit
af2b7b6c8d
11 changed files with 90 additions and 19 deletions
|
@ -6,6 +6,7 @@ from wobbl_tools.data_file import load_dataclass_json
|
|||
from settings import Settings
|
||||
from utils import Utils
|
||||
from player.player import Player
|
||||
from library.library import Library
|
||||
from gui import GUI
|
||||
from gui_communication.gui_communication import GUICommunication
|
||||
|
||||
|
@ -20,6 +21,7 @@ class Wobuzz:
|
|||
self.settings.set_attribute_change_event(self.on_settings_change)
|
||||
|
||||
self.player = Player(self)
|
||||
self.library = Library(self)
|
||||
self.gui = GUI(self)
|
||||
self.gui_communication = GUICommunication(self)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue