From 227e460780c5b7e99a8dcda5e1b62eb0110a8fa9 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Fri, 19 Apr 2024 00:43:54 +0300 Subject: [PATCH] plasma-runners: use the same icon for the match as the one in the desktop file Signed-off-by: Ivailo Monev --- plasma-runners/sleeper/krunner_sleeper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plasma-runners/sleeper/krunner_sleeper.cpp b/plasma-runners/sleeper/krunner_sleeper.cpp index b7a8e23d..6a621b07 100644 --- a/plasma-runners/sleeper/krunner_sleeper.cpp +++ b/plasma-runners/sleeper/krunner_sleeper.cpp @@ -52,7 +52,7 @@ void SleeperRunner::match(Plasma::RunnerContext &context) sleeptime = s_sleeptime; } Plasma::QueryMatch match(this); - match.setIcon(KIcon("timer")); + match.setIcon(KIcon("applications-engineering")); match.setText(i18n("Sleepy time: %1", sleeptime)); match.setData(sleeptime); context.addMatch(match);