mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
use different icon for "Add to places" as suggested by David Vignoni
CCMAIL: david@icon-king.com svn path=/trunk/KDE/kdebase/apps/; revision=747049
This commit is contained in:
parent
c9a2f61942
commit
4e43b5465f
1 changed files with 3 additions and 3 deletions
|
@ -109,7 +109,7 @@ void DolphinContextMenu::openTrashContextMenu()
|
|||
emptyTrashAction->setEnabled(!trashConfig.group("Status").readEntry("Empty", true));
|
||||
popup->addAction(emptyTrashAction);
|
||||
|
||||
QAction* addToPlacesAction = popup->addAction(KIcon("folder-bookmarks"),
|
||||
QAction* addToPlacesAction = popup->addAction(KIcon("bookmark-new"),
|
||||
i18nc("@action:inmenu Add current folder to places", "Add to Places"));
|
||||
|
||||
QAction* propertiesAction = m_mainWindow->actionCollection()->action("properties");
|
||||
|
@ -175,7 +175,7 @@ void DolphinContextMenu::openItemContextMenu()
|
|||
// insert 'Bookmark This Folder' entry if exactly one item is selected
|
||||
QAction* addToPlacesAction = 0;
|
||||
if (m_fileInfo.isDir() && (m_selectedUrls.count() == 1)) {
|
||||
addToPlacesAction = popup->addAction(KIcon("folder-bookmarks"),
|
||||
addToPlacesAction = popup->addAction(KIcon("bookmark-new"),
|
||||
i18nc("@action:inmenu Add selected folder to places", "Add to Places"));
|
||||
}
|
||||
|
||||
|
@ -252,7 +252,7 @@ void DolphinContextMenu::openViewportContextMenu()
|
|||
|
||||
popup->addSeparator();
|
||||
|
||||
QAction* addToPlacesAction = popup->addAction(KIcon("folder-bookmarks"),
|
||||
QAction* addToPlacesAction = popup->addAction(KIcon("bookmark-new"),
|
||||
i18nc("@action:inmenu Add current folder to places", "Add to Places"));
|
||||
popup->addSeparator();
|
||||
|
||||
|
|
Loading…
Reference in a new issue