diff --git a/app/playlists.py b/app/playlists.py index be172a6..edb1162 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -622,9 +622,11 @@ class PlaylistTab(QTableWidget): txt = f"Track not found (track.id={id})" else: txt = f""" - Title: {track.title}\n - Artist: {track.artist}\n - Path: {track.path}""" +Title: {track.title} +Artist: {track.artist} +Path: {track.path} +Track ID: {track.id} + """ info = QMessageBox(self) info.setIcon(QMessageBox.Information) info.setText(txt)