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
This commit is contained in:
Thomas Surrel 2018-10-04 11:45:23 -06:00 committed by Nathaniel Graham
parent 30bf49d5d1
commit b663abc6c7

View file

@ -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;