aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-01-23 16:28:22 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-01-23 16:28:22 +0000
commitbb74aba608c908f32e3ab8504b834ae0231417d5 (patch)
tree4804ede4036a612639cc8a97737a072aafb54825
parent95563aa52d1b15be8efcb23c979c40c0515cfa10 (diff)
downloadqmmp-bb74aba608c908f32e3ab8504b834ae0231417d5.tar.gz
qmmp-bb74aba608c908f32e3ab8504b834ae0231417d5.tar.bz2
qmmp-bb74aba608c908f32e3ab8504b834ae0231417d5.zip
show genre for streams
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@753 90c681e8-e032-0410-971d-27865f9a5e38
-rw-r--r--src/qmmpui/playlistmodel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qmmpui/playlistmodel.cpp b/src/qmmpui/playlistmodel.cpp
index 1ceb70265..cb3907aac 100644
--- a/src/qmmpui/playlistmodel.cpp
+++ b/src/qmmpui/playlistmodel.cpp
@@ -342,11 +342,13 @@ void PlayListModel::showDetails()
str.append(tr("Title:") + " %2\n");
str.append(tr("Artist:") + " %3\n");
str.append(tr("Album:") + " %4\n");
- str.append(tr("Comment:") + " %5");
+ str.append(tr("Genre:") + " %5\n");
+ str.append(tr("Comment:") + " %6");
str = str.arg(item->url())
.arg(item->title().isEmpty() ? item->text() : item->title())
.arg(item->artist())
.arg(item->album())
+ .arg(item->genre())
.arg(item->comment());
QMessageBox::information(0, m_items.at(i)->url(), str);
return;