From ac98f37023dc3fe5e7dda66fce31bc5f3ae21d23 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Thu, 16 May 2024 03:10:28 +0300 Subject: [PATCH] plasma: use system-run icon for the widget that opens the job destination in notifications applet because the destination may or may not be a directory Signed-off-by: Ivailo Monev --- plasma/applets/notifications/jobswidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plasma/applets/notifications/jobswidget.cpp b/plasma/applets/notifications/jobswidget.cpp index 4875f958..c2748706 100644 --- a/plasma/applets/notifications/jobswidget.cpp +++ b/plasma/applets/notifications/jobswidget.cpp @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include // NOTE: this is for generic jobs such as trash jobs which provide next to no info @@ -184,7 +184,7 @@ void JobFrame::slotJobUpdated(const QString &name, const QVariantMap &data) m_iconwidget1->setVisible(true); if (!desturl.isEmpty()) { m_iconwidget1->setProperty("_k_desturl", desturl); - m_iconwidget1->setIcon(KIcon("system-file-manager")); + m_iconwidget1->setIcon(KIcon("system-run")); m_iconwidget1->setToolTip(i18n("Click to open the destination of the job.")); } else { m_iconwidget1->setAcceptHoverEvents(false);