current highlighted search result is no longer reset when the search string changes...
[quassel.git] / src / qtui / systraynotificationbackend.cpp
index 1c8b572..35dd2dd 100644 (file)
@@ -58,7 +58,7 @@ void SystrayNotificationBackend::notify(const Notification &notification) {
   if(_showBubble) {
     showBubble();
   }
-  if(_animate && _notifications.count() == 1) {
+  if(_animate) {
     startAnimation();
   }
 }
@@ -87,7 +87,10 @@ void SystrayNotificationBackend::showBubble() {
 
 void SystrayNotificationBackend::closeBubble() {
   // there really seems to be no decent way to close the bubble...
+  // in addition, windows ignores the timeout -_-
+#ifndef Q_WS_WIN
   QtUi::mainWindow()->systemTrayIcon()->showMessage("", "", QSystemTrayIcon::NoIcon, 1);
+#endif
 }
 
 void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) {