cleaner code
This commit is contained in:
parent
e4b162d470
commit
7f5f9c5523
1 changed files with 8 additions and 7 deletions
|
@ -87,14 +87,15 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
|
|||
name = NULL;
|
||||
}
|
||||
}
|
||||
if (name == NULL && allow_fallback) {
|
||||
if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path)) {
|
||||
g_message("Unable to load the theme '%s'", DEFAULT_THEME);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
if (name == NULL)
|
||||
return NULL;
|
||||
if (allow_fallback) {
|
||||
if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path)) {
|
||||
g_message("Unable to load the theme '%s'", DEFAULT_THEME);
|
||||
return NULL;
|
||||
}
|
||||
} else
|
||||
return NULL;
|
||||
}
|
||||
|
||||
ps.inst = inst;
|
||||
|
||||
|
|
Loading…
Reference in a new issue