only show falling back msg when its true

This commit is contained in:
Dana Jansens 2007-05-31 15:41:06 +00:00
parent 5588c49335
commit e4b162d470

View file

@ -80,8 +80,9 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
if (name) { if (name) {
if (!parse_load_theme(name, &ps.doc, &root, &ps.path)) { if (!parse_load_theme(name, &ps.doc, &root, &ps.path)) {
g_message("Unable to load the theme '%s'", name); g_message("Unable to load the theme '%s'", name);
g_message("Falling back to the default theme '%s'", if (allow_fallback)
DEFAULT_THEME); g_message("Falling back to the default theme '%s'",
DEFAULT_THEME);
/* make it fall back to default theme */ /* make it fall back to default theme */
name = NULL; name = NULL;
} }