Improve track info box. Fixes #46
This commit is contained in:
parent
976beade85
commit
f0b59b8d23
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user