┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Surrel <[email protected]>2018-10-04 11:45:23 -0600
committerNathaniel Graham <[email protected]>2018-10-04 11:52:36 -0600
commitb663abc6c7f6583537db9a3da5ff665eaedb6749 (patch)
treeaea3d8eeeb68d7612537cb73d1cf351ff6b73034
parent30bf49d5d1539e9d02944230cf4489ebbccf5a45 (diff)
Change icon for the 'Edit...' context menu entry in Places panel
Summary: The current icon is used for displaying the Properties context menu in other places in dolphin. Change to edit-entry. Test Plan: Right-click on a place in the Places panel. Reviewers: #dolphin, #vdg, ngraham Reviewed By: #dolphin, #vdg, ngraham Subscribers: broulik, kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D15938
-rw-r--r--src/panels/places/placespanel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/places/placespanel.cpp b/src/panels/places/placespanel.cpp
index ec8b8f727..2829083e5 100644
--- a/src/panels/places/placespanel.cpp
+++ b/src/panels/places/placespanel.cpp
@@ -203,7 +203,7 @@ void PlacesPanel::slotItemContextMenuRequested(int index, const QPointF& pos)
}
if (!isDevice) {
- editAction = menu.addAction(QIcon::fromTheme("document-properties"), i18nc("@item:inmenu", "Edit..."));
+ editAction = menu.addAction(QIcon::fromTheme("edit-entry"), i18nc("@item:inmenu", "Edit..."));
}
QAction* removeAction = nullptr;