1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

Change the Dolphin places icons:

* folder-txt => folder-text
* folder-video => folder-videos
* folder-image => folder-images

Thanks to andreas_k and Christian Butcher!

BUG: 347257
FIXED-IN: 15.08.0
This commit is contained in:
Christian Butcher 2015-07-27 22:29:00 +02:00 committed by Emmanuel Pescosta
parent c7b19c587f
commit 52136255d8

View File

@ -917,16 +917,16 @@ void PlacesItemModel::createSystemBookmarks()
"view-calendar-month",
I18N_NOOP2("KFile System Bookmarks", "Last Month")));
m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/documents"),
"folder-txt",
"folder-text",
I18N_NOOP2("KFile System Bookmarks", "Documents")));
m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/images"),
"folder-image",
"folder-images",
I18N_NOOP2("KFile System Bookmarks", "Images")));
m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/audio"),
"folder-sound",
I18N_NOOP2("KFile System Bookmarks", "Audio Files")));
m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/videos"),
"folder-video",
"folder-videos",
I18N_NOOP2("KFile System Bookmarks", "Videos")));
}