From: Shaun Reich Date: Wed, 11 Mar 2009 22:46:34 +0000 (+0000) Subject: Using the "document-properties" icon for the Properties entry of the RMB context... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/26a75802ebcd74dc9182ff8f2ef9acf8319e0037?ds=inline Using the "document-properties" icon for the Properties entry of the RMB context menu. This is used elsewhere already... svn path=/trunk/KDE/kdebase/apps/; revision=938482 --- diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp index 2c83c9bda..dc4d6a909 100644 --- a/src/dolphinviewactionhandler.cpp +++ b/src/dolphinviewactionhandler.cpp @@ -113,6 +113,7 @@ void DolphinViewActionHandler::createActions() KAction *propertiesAction = m_actionCollection->addAction( "properties" ); // Well, it's the File menu in dolphinmainwindow and the Edit menu in dolphinpart... :) propertiesAction->setText( i18nc("@action:inmenu File", "Properties") ); + propertiesAction->setIcon(KIcon("document-properties")); propertiesAction->setShortcut(Qt::ALT | Qt::Key_Return); connect(propertiesAction, SIGNAL(triggered()), SLOT(slotProperties()));