diff --git a/app/fileopscontextmanageritem.cpp b/app/fileopscontextmanageritem.cpp --- a/app/fileopscontextmanageritem.cpp +++ b/app/fileopscontextmanageritem.cpp @@ -139,14 +139,17 @@ mCopyToAction = file->addAction("file_copy_to", this, SLOT(copyTo())); mCopyToAction->setText(i18nc("Verb", "Copy To...")); + mCopyToAction->setIcon(QIcon::fromTheme("edit-copy")); actionCollection->setDefaultShortcut(mCopyToAction, Qt::Key_F7); mMoveToAction = file->addAction("file_move_to", this, SLOT(moveTo())); mMoveToAction->setText(i18nc("Verb", "Move To...")); + mMoveToAction->setIcon(QIcon::fromTheme("go-jump")); actionCollection->setDefaultShortcut(mMoveToAction, Qt::Key_F8); mLinkToAction = file->addAction("file_link_to", this, SLOT(linkTo())); mLinkToAction->setText(i18nc("Verb: create link to the file where user wants", "Link To...")); + mLinkToAction->setIcon(QIcon::fromTheme("insert-link")); actionCollection->setDefaultShortcut(mLinkToAction, Qt::Key_F9); mRenameAction = file->addAction("file_rename", this, SLOT(rename())); @@ -181,6 +184,7 @@ mOpenContainingFolderAction = file->addAction("file_open_containing_folder", this, SLOT(openContainingFolder())); mOpenContainingFolderAction->setText(i18n("Open Containing Folder")); + mOpenContainingFolderAction->setIcon(QIcon::fromTheme("folder-open")); mRegularFileActionList << mRenameAction diff --git a/app/imageopscontextmanageritem.cpp b/app/imageopscontextmanageritem.cpp --- a/app/imageopscontextmanageritem.cpp +++ b/app/imageopscontextmanageritem.cpp @@ -113,7 +113,7 @@ mRedEyeReductionAction = edit->addAction("red_eye_reduction", q, SLOT(startRedEyeReduction())); mRedEyeReductionAction->setText(i18n("Red Eye Reduction")); - //mRedEyeReductionAction->setIcon(QIcon::fromTheme("transform-crop-and-resize")); + mRedEyeReductionAction->setIcon(QIcon::fromTheme("redeyes")); mActionList << mRotateLeftAction