From e9748c1d2a7dca1c9564b61922e466089d804617 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Wed, 20 Sep 2017 07:34:02 +0200 Subject: [PATCH] Correct icons in recycle bin context menus. --- src/services/abstract/recyclebin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/abstract/recyclebin.cpp b/src/services/abstract/recyclebin.cpp index 387874e86..9fb3fc315 100755 --- a/src/services/abstract/recyclebin.cpp +++ b/src/services/abstract/recyclebin.cpp @@ -72,10 +72,10 @@ QVariant RecycleBin::data(int column, int role) const { QList RecycleBin::contextMenu() { if (m_contextMenu.isEmpty()) { - QAction* restore_action = new QAction(qApp->icons()->fromTheme(QSL("recycle-bin-restore-all")), + QAction* restore_action = new QAction(qApp->icons()->fromTheme(QSL("view-refresh")), tr("Restore recycle bin"), this); - QAction* empty_action = new QAction(qApp->icons()->fromTheme(QSL("recycle-bin-empty")), + QAction* empty_action = new QAction(qApp->icons()->fromTheme(QSL("edit-clear")), tr("Empty recycle bin"), this);