summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-01-31 02:02:16 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-02-03 21:11:06 +0100
commitfbd64ec386c285ee3f7861d0860f4f476d163967 (patch)
treeeb78e26dbd125f402ab835e098db39637f9c9f59
parent5dad8abdc3c35e68ffcefe9053d74113969a424b (diff)
downloadtdelibs-fbd64ec386c285ee3f7861d0860f4f476d163967.tar.gz
tdelibs-fbd64ec386c285ee3f7861d0860f4f476d163967.zip
Improve folder icons on the speedbar.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 017a50624b40f1d24a3a3ab98ee622d906531e12)
-rw-r--r--kio/kfile/kfilespeedbar.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kio/kfile/kfilespeedbar.cpp b/kio/kfile/kfilespeedbar.cpp
index 5cf9ed3df..1050ed85b 100644
--- a/kio/kfile/kfilespeedbar.cpp
+++ b/kio/kfile/kfilespeedbar.cpp
@@ -45,13 +45,13 @@ KFileSpeedBar::KFileSpeedBar( TQWidget *parent, const char *name )
if ( m_initializeSpeedbar )
{
insertItem(TQDir::homeDirPath(), i18n("Home Folder"), false, "folder_home");
- insertItem(KGlobalSettings::desktopPath(), i18n("Desktop"), false, "folder_txt");
- insertItem(KGlobalSettings::documentPath(), i18n("Documents"), false, "folder_txt");
+ insertItem(KGlobalSettings::desktopPath(), i18n("Desktop"), false, "desktop");
+ insertItem(KGlobalSettings::documentPath(), i18n("Documents"), false, "folder_wordprocessing");
insertItem(KGlobalSettings::downloadPath(), i18n( "Downloads" ), false, "folder_html");
insertItem(KGlobalSettings::musicPath(), i18n( "Music" ), false, "folder_sound");
insertItem(KGlobalSettings::picturesPath(), i18n( "Pictures" ), false, "folder_image");
- insertItem(KGlobalSettings::publicSharePath(), i18n( "Public" ), false, "folder");
- insertItem(KGlobalSettings::templatesPath(), i18n( "Templates" ), false, "folder_txt");
+ insertItem(KGlobalSettings::publicSharePath(), i18n( "Public" ), false, "folder_open");
+ insertItem(KGlobalSettings::templatesPath(), i18n( "Templates" ), false, "folder_grey");
insertItem(KGlobalSettings::videosPath(), i18n( "Videos" ), false, "folder_video");
KURL u = "media:/";