Fix start time calc that stopped app starting

This commit is contained in:
Keith Edmunds 2023-02-08 16:10:31 +00:00
parent 0c38fc2ef4
commit a15f181008

View File

@ -1029,11 +1029,11 @@ class PlaylistTab(QTableWidget):
if not playlist_row:
continue
note_text = playlist_row.note
note_colour = None
if not note_text:
note_text = ""
# Get note colour
note_colour = None
if note_text:
else:
note_colour = NoteColours.get_colour(session, note_text)
# Get track if there is one
@ -1152,7 +1152,7 @@ class PlaylistTab(QTableWidget):
self._set_row_start_time(row, next_start_time)
if track.duration:
next_start_time = self._calculate_end_time(
start_time, track.duration)
next_start_time, track.duration)
# Set end time
self._set_row_end_time(row, next_start_time)
else: