Fix bug inserting multiple tracks from query

This commit is contained in:
Keith Edmunds 2025-04-12 09:28:22 +01:00
parent 199abc9c0c
commit 0478e25109
2 changed files with 2 additions and 3 deletions

View File

@ -1398,7 +1398,7 @@ class Window(QMainWindow):
else:
base_model.insert_row(new_row_number, track_id)
new_row_number += 1
new_row_number += 1
# # # # # # # # # # Playlist management functions # # # # # # # # # #

View File

@ -37,8 +37,7 @@ from helpers import (
ms_to_mmss,
show_warning,
)
from log import log
from models import db, Playdates
from log import log, log_call
from playlistrow import PlaylistRow
import repository