From 118d91ae7878fd62de4d20d73686bbf19bd6a023 Mon Sep 17 00:00:00 2001 From: Piyush Aggarwal Date: Mon, 30 Sep 2019 20:53:46 +0000 Subject: [PATCH] add title to pairing request notification --- daemon/kdeconnectd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/kdeconnectd.cpp b/daemon/kdeconnectd.cpp index 6f341bc83..8e38dd822 100644 --- a/daemon/kdeconnectd.cpp +++ b/daemon/kdeconnectd.cpp @@ -62,6 +62,7 @@ public: KNotification* notification = new KNotification(QStringLiteral("pairingRequest")); notification->setIconName(QStringLiteral("dialog-information")); notification->setComponentName(QStringLiteral("kdeconnect")); + notification->setTitle(QStringLiteral("KDE Connect")); notification->setText(i18n("Pairing request from %1", device->name().toHtmlEscaped())); notification->setActions(QStringList() << i18n("Accept") << i18n("Reject")); // notification->setTimeout(PairingHandler::pairingTimeoutMsec());