From: Peter Penz Date: Mon, 16 Jan 2012 14:37:32 +0000 (+0100) Subject: Use new icon for "Show in groups" X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/d93cf037ea6c37730cd7baf4ac14c9d4be4a3c7f Use new icon for "Show in groups" This allows adding the "Show in groups" action to the toolbar with a nice icon. CCBUG: 290632 --- diff --git a/src/views/dolphinviewactionhandler.cpp b/src/views/dolphinviewactionhandler.cpp index caa35230a..f66aebc84 100644 --- a/src/views/dolphinviewactionhandler.cpp +++ b/src/views/dolphinviewactionhandler.cpp @@ -195,6 +195,7 @@ void DolphinViewActionHandler::createActions() } KToggleAction* showInGroups = m_actionCollection->add("show_in_groups"); + showInGroups->setIcon(KIcon("view-group")); showInGroups->setText(i18nc("@action:inmenu View", "Show in Groups")); connect(showInGroups, SIGNAL(triggered(bool)), this, SLOT(toggleGroupedSorting(bool)));