From ee02df7935ad4c747f64030bd2f3b8a98ab2c4c9 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Fri, 26 Dec 2008 19:14:04 +0000 Subject: status icon: fixed state tracking; notifier plugin: show test message git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@716 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/notifier/notifier.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/plugins/General/notifier') diff --git a/src/plugins/General/notifier/notifier.cpp b/src/plugins/General/notifier/notifier.cpp index 5bdba1595..d1254a78b 100644 --- a/src/plugins/General/notifier/notifier.cpp +++ b/src/plugins/General/notifier/notifier.cpp @@ -44,6 +44,8 @@ Notifier::Notifier(QObject *parent) connect (m_core, SIGNAL(metaDataChanged ()), SLOT(showMetaData())); connect (m_core, SIGNAL(stateChanged (Qmmp::State)), SLOT(setState(Qmmp::State))); connect (m_core, SIGNAL(volumeChanged(int, int)), SLOT(showVolume(int, int))); + if (m_core->state() == Qmmp::Playing) //test message + showMetaData(); } Notifier::~Notifier() @@ -54,9 +56,6 @@ void Notifier::setState(Qmmp::State state) switch ((uint) state) { case Qmmp::Playing: - { - break; - } case Qmmp::Paused: { break; -- cgit v1.2.3-13-gbd6f