diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-10-12 17:58:37 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-10-12 17:58:37 +0000 |
| commit | f4b817be7e88f33c0e9f1d0abf2ce5d623a9b067 (patch) | |
| tree | 693aa75b7031ba0a90131dde6c10495da822e489 /src/plugins/General/notifier/popupwidget.cpp | |
| parent | e502246a364e77992aef609e030bc566addfb960 (diff) | |
| download | qmmp-f4b817be7e88f33c0e9f1d0abf2ce5d623a9b067.tar.gz qmmp-f4b817be7e88f33c0e9f1d0abf2ce5d623a9b067.tar.bz2 qmmp-f4b817be7e88f33c0e9f1d0abf2ce5d623a9b067.zip | |
notifier plugin: fixed popup widget
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1307 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/notifier/popupwidget.cpp')
| -rw-r--r-- | src/plugins/General/notifier/popupwidget.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/General/notifier/popupwidget.cpp b/src/plugins/General/notifier/popupwidget.cpp index 54779728c..f2136aaf9 100644 --- a/src/plugins/General/notifier/popupwidget.cpp +++ b/src/plugins/General/notifier/popupwidget.cpp @@ -90,7 +90,7 @@ void PopupWidget::showMetaData() if (core->totalTime() > 0) { title.append(" "); - title.append(QString("(%1:%2)").arg(core->totalTime()/60000).arg(core->totalTime()%60000/1000, 2, 10, QChar('0'))); + title.append(QString(" || %1:%2").arg(core->totalTime()/60000).arg(core->totalTime()%60000/1000, 2, 10, QChar('0'))); } title.append("</b>"); @@ -112,13 +112,11 @@ void PopupWidget::showMetaData() { m_pixlabel->setFixedSize(m_coverSize,m_coverSize); m_pixlabel->setPixmap(pix.scaled(m_coverSize,m_coverSize)); - m_label1->setAlignment(Qt::AlignTop); } else { m_pixlabel->setPixmap(QPixmap(":/notifier_icon.png")); m_pixlabel->setFixedSize(32,32); - m_label1->setAlignment(Qt::AlignVCenter); } qApp->processEvents(); resize(sizeHint()); |
