From e4b162d470bfbb04035bb9b3f4481fb9d171fda2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 31 May 2007 15:41:06 +0000 Subject: [PATCH] only show falling back msg when its true --- render/theme.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/render/theme.c b/render/theme.c index 2b91e765..ed836efd 100644 --- a/render/theme.c +++ b/render/theme.c @@ -80,8 +80,9 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name, if (name) { if (!parse_load_theme(name, &ps.doc, &root, &ps.path)) { g_message("Unable to load the theme '%s'", name); - g_message("Falling back to the default theme '%s'", - DEFAULT_THEME); + if (allow_fallback) + g_message("Falling back to the default theme '%s'", + DEFAULT_THEME); /* make it fall back to default theme */ name = NULL; } -- 2.39.2