From c35601be2975917e7fe220fae2dc3cee5d9103bc Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Thu, 8 Jul 2004 15:23:22 +0000 Subject: [PATCH] r3577: Better error message if the ROX theme can't be linked. --- ROX-Filer/src/type.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ROX-Filer/src/type.c b/ROX-Filer/src/type.c index cfad9bca..ecb2dd3b 100644 --- a/ROX-Filer/src/type.c +++ b/ROX-Filer/src/type.c @@ -1491,8 +1491,10 @@ static void set_icon_theme(void) icon_home = g_build_filename(home_dir, ".icons", "ROX", NULL); if (symlink(make_path(app_dir, "ROX"), icon_home)) - delayed_error(_("Failed to create symlink '%s':\n%s"), - icon_home, g_strerror(errno)); + delayed_error(_("Failed to create symlink '%s':\n%s\n\n" + "(this may mean that the ROX theme already exists there, but " + "the 'mime-application:postscript' icon couldn't be loaded for " + "some reason)"), icon_home, g_strerror(errno)); g_free(icon_home); rox_icon_theme_rescan_if_needed(icon_theme); -- 2.11.4.GIT