This commit is contained in:
Billy 2025-10-02 19:37:32 +00:00
parent f4dd259cb4
commit 622c522e46

View File

@ -660,7 +660,6 @@ class MusicTable(QTableView):
# DBAccess is being instantiated for every file, boo # DBAccess is being instantiated for every file, boo
# NOTE: # NOTE:
# is that even possible with move file function? # is that even possible with move file function?
# FIXME: change reorganize location in config, try to reorganize, failed - old reference # FIXME: change reorganize location in config, try to reorganize, failed - old reference
# Get target directory # Get target directory
@ -780,7 +779,6 @@ class MusicTable(QTableView):
error(f"load_music_table() | Unhandled exception 2: {e}") error(f"load_music_table() | Unhandled exception 2: {e}")
return return
# Populate the model # Populate the model
# row_count: int = 0
# TODO: total time of playlist # TODO: total time of playlist
# but how do i want to do this if user doesn't choose to see length field? # but how do i want to do this if user doesn't choose to see length field?
# spawn new thread and calculate myself? # spawn new thread and calculate myself?
@ -788,7 +786,6 @@ class MusicTable(QTableView):
for row_data in data: for row_data in data:
# print(row_data) # print(row_data)
# if "length" in fields: # if "length" in fields:
# row_count += 1
id, *rest_of_data = row_data id, *rest_of_data = row_data
# handle different datatypes # handle different datatypes
items = [] items = []
@ -805,7 +802,7 @@ class MusicTable(QTableView):
for item in items: for item in items:
item.setData(id, Qt.ItemDataRole.UserRole) item.setData(id, Qt.ItemDataRole.UserRole)
self.model2.appendRow(items) self.model2.appendRow(items)
# Store the current loaded model # Store the current loaded model in cache
self.cache_models[self.selected_playlist_id] = self.model2 self.cache_models[self.selected_playlist_id] = self.model2
debug('Current model stored') debug('Current model stored')