From bed969941463bfa89f38ada695090964e78642a9 Mon Sep 17 00:00:00 2001 From: Frank Reininghaus Date: Thu, 9 Aug 2012 23:52:51 +0200 Subject: [PATCH] Follow-up to d7e7ca53bb95c7555bbf107d92b47ac25eda1918 - use correct icon I overlooked that "actions/" is not part of the icon name. Just rebuilding and re-running Dolphin did not reveal this issue, it seems that the old icon "package_utility_time" was still cached somewhere. I hope that it really works on all distros now. CCBUG: 304323 --- src/panels/places/placesitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/places/placesitem.cpp b/src/panels/places/placesitem.cpp index 318da5391..f72f63975 100644 --- a/src/panels/places/placesitem.cpp +++ b/src/panels/places/placesitem.cpp @@ -138,7 +138,7 @@ void PlacesItem::setBookmark(const KBookmark& bookmark) const GroupType type = groupType(); if (icon().isEmpty()) { switch (type) { - case RecentlyAccessedType: setIcon("actions/chronometer"); break; + case RecentlyAccessedType: setIcon("chronometer"); break; case SearchForType: setIcon("nepomuk"); break; case PlacesType: default: setIcon("folder"); -- 2.47.3