diff --git a/kdeui/notifications/knotification.cpp b/kdeui/notifications/knotification.cpp index 5c3d4217..6f84c6a6 100644 --- a/kdeui/notifications/knotification.cpp +++ b/kdeui/notifications/knotification.cpp @@ -362,7 +362,7 @@ void KNotification::send() const bool persistent = (flags() & KNotification::Persistent); kNotificationManager->send(this, persistent); if (!persistent) { - close(); + QTimer::singleShot(500, this, SLOT(close())); } }