Index: src/filewidgets/kfileplacesview.cpp =================================================================== --- src/filewidgets/kfileplacesview.cpp +++ src/filewidgets/kfileplacesview.cpp @@ -742,7 +742,7 @@ const bool clickOverHeader = delegate->pointIsHeaderArea(event->pos()); if (clickOverHeader) { const KFilePlacesModel::GroupType type = placesModel->groupType(index); - hideSection = menu.addAction(i18n("Hide Section")); + hideSection = menu.addAction(QIcon::fromTheme(QStringLiteral("hint")), i18n("Hide Section")); hideSection->setCheckable(true); hideSection->setChecked(placesModel->isGroupHidden(type)); } @@ -778,7 +778,7 @@ add = menu.addAction(QIcon::fromTheme(QStringLiteral("document-new")), i18n("Add Entry...")); } - hide = menu.addAction(i18n("&Hide Entry '%1'", label)); + hide = menu.addAction(QIcon::fromTheme(QStringLiteral("hint")), i18n("&Hide Entry '%1'", label)); hide->setCheckable(true); hide->setChecked(placesModel->isHidden(index)); // if a parent is hidden no interaction should be possible with children, show it first to do so @@ -790,7 +790,7 @@ QAction *showAll = nullptr; if (placesModel->hiddenCount() > 0) { - showAll = new QAction(i18n("&Show All Entries"), &menu); + showAll = new QAction(QIcon::fromTheme(QStringLiteral("visibility")), i18n("&Show All Entries"), &menu); showAll->setCheckable(true); showAll->setChecked(d->showAll); if (mainSeparator == nullptr) {