From ef31db76d1072cf3d3fabb44bb64d25adcb8f5c8 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 26 Jul 2019 12:52:47 -0600 Subject: [PATCH] Use identical internet-services icon This icon is identical to the applications-internet icon at the small size used here sizes, but is more appropriate to use because it is guaranteed to always be monochrome, unlike applications-internet which is a colorful category icon and only had small monochrome versions due to a design oversight that's being corrected in https://phabricator.kde.org/D22733. --- components/shellprivate/widgetexplorer/widgetexplorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/shellprivate/widgetexplorer/widgetexplorer.cpp b/components/shellprivate/widgetexplorer/widgetexplorer.cpp index 90bfadeea..74675f1df 100644 --- a/components/shellprivate/widgetexplorer/widgetexplorer.cpp +++ b/components/shellprivate/widgetexplorer/widgetexplorer.cpp @@ -212,7 +212,7 @@ QList WidgetExplorer::widgetsMenuActions() WidgetAction *action = nullptr; if (KAuthorized::authorize(QStringLiteral("ghns"))) { - action = new WidgetAction(QIcon::fromTheme(QStringLiteral("applications-internet")), + action = new WidgetAction(QIcon::fromTheme(QStringLiteral("internet-services")), i18n("Download New Plasma Widgets"), this); connect(action, &QAction::triggered, this, &WidgetExplorer::downloadWidgets); actionList << action;