From fd3d5acc4bf589926c0f23ed87da98b2f9372372 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Mon, 27 Apr 2009 16:09:56 +0200 Subject: [PATCH] Don't make KDE notifications persistent --- src/qtui/knotificationbackend.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index f27a9d76..d1db7746 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -52,7 +52,9 @@ void KNotificationBackend::notify(const Notification &n) { QString message = QString("<%1> %2").arg(n.sender, Qt::escape(n.message)); KNotification *notification = KNotification::event(type, message, DesktopIcon("dialog-information"), QtUi::mainWindow(), - KNotification::Persistent|KNotification::RaiseWidgetOnActivation|KNotification::CloseWhenWidgetActivated); + KNotification::RaiseWidgetOnActivation + |KNotification::CloseWhenWidgetActivated + |KNotification::CloseOnTimeout); connect(notification, SIGNAL(activated(uint)), SLOT(notificationActivated())); connect(notification, SIGNAL(closed()), SLOT(notificationClosed())); notification->setActions(QStringList("View")); -- 2.20.1