1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-21 22:25:39 +01:00

Don't show the dash when starting a radio stream

This commit is contained in:
David Sansome 2010-02-26 22:13:13 +00:00
parent b3acccac97
commit dd04274e64

View File

@ -29,7 +29,7 @@ void OSD::ReloadSettings() {
void OSD::SongChanged(const Song &song) {
qDebug() << __PRETTY_FUNCTION__;
QString summary(song.PrettyTitle());
if (!song.artist().isNull())
if (!song.artist().isEmpty())
summary = QString("%1 - %2").arg(song.artist(), summary);
QStringList message_parts;