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})"
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)