plugins/keynotification: Fix event ID for notification

BUG: 495264


(cherry picked from commit b786c7e930)

Co-authored-by: Nicolas Fella <nicolas.fella@gmx.de>
wilder/Plasma/6.2
Nicolas Fella 1 year ago
parent c3cff58937
commit 1485605dbc
  1. 2
      src/plugins/keynotification/keynotification.cpp

@ -111,7 +111,7 @@ void KeyNotificationPlugin::modifiersChanged()
void KeyNotificationPlugin::sendNotification(const QString &eventId, const QString &text)
{
KNotification *notification = new KNotification(QStringLiteral("modifierkey-locked"));
KNotification *notification = new KNotification(eventId);
notification->setComponentName(QStringLiteral("kaccess"));
notification->setText(text);
notification->sendEvent();

Loading…
Cancel
Save