From f4b817be7e88f33c0e9f1d0abf2ce5d623a9b067 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 12 Oct 2009 17:58:37 +0000 Subject: 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 --- src/plugins/General/notifier/popupwidget.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/plugins/General/notifier/popupwidget.cpp') 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(""); @@ -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()); -- cgit v1.2.3-13-gbd6f