From: Dana Jansens Date: Thu, 31 May 2007 15:44:28 +0000 (+0000) Subject: cleaner code X-Git-Tag: release-3.4.3~90^2~151 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=7f5f9c5523d0bf48ebdc65b47f03dd7f17bb79ae;p=dana%2Fopenbox.git cleaner code --- diff --git a/render/theme.c b/render/theme.c index ed836efd..f6887079 100644 --- a/render/theme.c +++ b/render/theme.c @@ -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); + if (name == 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; - } } - if (name == NULL) - return NULL; ps.inst = inst;