Improve track info box. Fixes #46

This commit is contained in:
Keith Edmunds 2021-08-14 08:03:03 +01:00
parent 976beade85
commit f0b59b8d23

View File

@ -622,9 +622,11 @@ class PlaylistTab(QTableWidget):
txt = f"Track not found (track.id={id})" txt = f"Track not found (track.id={id})"
else: else:
txt = f""" txt = f"""
Title: {track.title}\n Title: {track.title}
Artist: {track.artist}\n Artist: {track.artist}
Path: {track.path}""" Path: {track.path}
Track ID: {track.id}
"""
info = QMessageBox(self) info = QMessageBox(self)
info.setIcon(QMessageBox.Information) info.setIcon(QMessageBox.Information)
info.setText(txt) info.setText(txt)