Bug fix: inserting timed note didn't refresh times
This commit is contained in:
parent
5d65bebd1e
commit
3f7cac07e3
@ -148,7 +148,8 @@ class Playlist(QTableWidget):
|
||||
row = self.rowCount()
|
||||
DEBUG(f"playlist.add_note(): row={row}")
|
||||
|
||||
self.add_to_playlist(Notes.add_note(self.playlist_id, row, text), row)
|
||||
note = Notes.add_note(self.playlist_id, row, text)
|
||||
self.add_to_playlist(note, row=row)
|
||||
|
||||
def add_to_playlist(self, data, repaint=True, row=None):
|
||||
"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user