diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-09-17 19:30:41 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-09-17 19:30:41 +0000 |
| commit | 7665da44a26a6e5d53435c1635b67173985d197a (patch) | |
| tree | fdff73f6fdecf26cea1c41f37eaeaec493d82197 /src/ui/mainwindow.cpp | |
| parent | f0efac56e92cd23e07d58317c09f08591befd3bc (diff) | |
| download | qmmp-7665da44a26a6e5d53435c1635b67173985d197a.tar.gz qmmp-7665da44a26a6e5d53435c1635b67173985d197a.tar.bz2 qmmp-7665da44a26a6e5d53435c1635b67173985d197a.zip | |
fixed notifications
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1229 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/mainwindow.cpp')
| -rw-r--r-- | src/ui/mainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index 7ac0461d2..0b78a3320 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -268,7 +268,8 @@ void MainWindow::showMetaData() qDebug("TRACK = %s", qPrintable(m_core->metaData(Qmmp::TRACK))); qDebug("== end of metadata =="); - if (m_playlist->currentItem() && !m_core->metaData().isEmpty()) + if (m_playlist->currentItem() && + m_playlist->currentItem()->url() == m_core->metaData().value(Qmmp::URL)) { m_playlist->currentItem()->updateMetaData(m_core->metaData()); m_playlist->updateList(); |
