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>2020-01-31 13:59:32 +0100
commit228610fd9e305fe3979f7306b267910c2bf454a0 (patch)
tree767f723e109f803b64d63d153122d93e4df73205
parent41cceb16c46d9d9b9328bb27f939a1c8de7bda1f (diff)
downloadtdelibs-228610fd9e305fe3979f7306b267910c2bf454a0.tar.gz
tdelibs-228610fd9e305fe3979f7306b267910c2bf454a0.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--tdeio/tdefile/tdefilespeedbar.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeio/tdefile/tdefilespeedbar.cpp b/tdeio/tdefile/tdefilespeedbar.cpp
index bce229c4c..066953f3a 100644
--- a/tdeio/tdefile/tdefilespeedbar.cpp
+++ b/tdeio/tdefile/tdefilespeedbar.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(TDEGlobalSettings::desktopPath(), i18n("Desktop"), false, "folder_txt");
- insertItem(TDEGlobalSettings::documentPath(), i18n("Documents"), false, "folder_txt");
+ insertItem(TDEGlobalSettings::desktopPath(), i18n("Desktop"), false, "desktop");
+ insertItem(TDEGlobalSettings::documentPath(), i18n("Documents"), false, "folder_wordprocessing");
insertItem(TDEGlobalSettings::downloadPath(), i18n( "Downloads" ), false, "folder_html");
insertItem(TDEGlobalSettings::musicPath(), i18n( "Music" ), false, "folder_sound");
insertItem(TDEGlobalSettings::picturesPath(), i18n( "Pictures" ), false, "folder_image");
- insertItem(TDEGlobalSettings::publicSharePath(), i18n( "Public" ), false, "folder");
- insertItem(TDEGlobalSettings::templatesPath(), i18n( "Templates" ), false, "folder_txt");
+ insertItem(TDEGlobalSettings::publicSharePath(), i18n( "Public" ), false, "folder_open");
+ insertItem(TDEGlobalSettings::templatesPath(), i18n( "Templates" ), false, "folder_grey");
insertItem(TDEGlobalSettings::videosPath(), i18n( "Videos" ), false, "folder_video");
KURL u = "media:/";