Show a song's URL in the title playlist column if it doesn't have a title or base filename.

This commit is contained in:
David Sansome 2011-06-17 19:32:03 +00:00
parent 4393199d66
commit 99390486bf
1 changed files with 2 additions and 0 deletions

View File

@ -1094,6 +1094,8 @@ QString Song::PrettyTitle() const {
if (title.isEmpty())
title = d->basefilename_;
if (title.isEmpty())
title = d->url_.toString();
return title;
}