From 01159b1add0b8f32c98bd9800cce7655b1ab484d Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Wed, 14 Mar 2018 15:16:28 +0100 Subject: [PATCH] [FileItemActionPlugin] Use kdeconnect icon for submenu with multiple devices It's more recognizable than the generic globe icon Differential Revision: https://phabricator.kde.org/D11321 --- fileitemactionplugin/sendfileitemaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fileitemactionplugin/sendfileitemaction.cpp b/fileitemactionplugin/sendfileitemaction.cpp index 2006e1c93..4b2136187 100644 --- a/fileitemactionplugin/sendfileitemaction.cpp +++ b/fileitemactionplugin/sendfileitemaction.cpp @@ -72,7 +72,7 @@ QList SendFileItemAction::actions(const KFileItemListProperties& fileI } if (actions.count() > 1) { - QAction* menuAction = new QAction(QIcon::fromTheme(QStringLiteral("preferences-system-network")), i18n("Send via KDE Connect"), parentWidget); + QAction* menuAction = new QAction(QIcon::fromTheme(QStringLiteral("kdeconnect")), i18n("Send via KDE Connect"), parentWidget); QMenu* menu = new QMenu(parentWidget); menu->addActions(actions); menuAction->setMenu(menu);