From kde-commits Sun Sep 25 16:29:42 2011 From: Alex Fiestas Date: Sun, 25 Sep 2011 16:29:42 +0000 To: kde-commits Subject: KDE/kdenetwork/kopete/kopete Message-Id: <20110925162942.85CA3AC885 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=131696820110365 SVN commit 1255647 by afiestas: Only show kopete in systray if something is happening As far as I know kopete has no maintainer and since this is how all KDE applications should behave at least when running in our workspace I'm feeling confident enough to do the commit without reviewboard. Please, if I'm wrong revert the commit and I will send the patch to reviewboard. M +2 -2 systemtray.cpp --- trunk/KDE/kdenetwork/kopete/kopete/systemtray.cpp #1255646:1255647 @@ -51,7 +51,7 @@ kDebug(14010) ; setCategory(Communications); setToolTip("kopete", "Kopete", KGlobal::mainComponent().aboutData()->shortDescription()); - setStatus(Active); + setStatus(Passive); mIsBlinkIcon = false; mBlinkTimer = new QTimer(this); @@ -139,7 +139,7 @@ void KopeteSystemTray::stopBlink() { - setStatus(Active); + setStatus(Passive); if ( mBlinkTimer->isActive() ) mBlinkTimer->stop();