all repos — openbox @ 7f5f9c5523d0bf48ebdc65b47f03dd7f17bb79ae

openbox fork - make it a bit more like ryudo

cleaner code
Dana Jansens danakj@orodu.net
commit

7f5f9c5523d0bf48ebdc65b47f03dd7f17bb79ae

parent

e4b162d470bfbb04035bb9b3f4481fb9d171fda2

1 files changed, 7 insertions(+), 6 deletions(-)

jump to
M render/theme.crender/theme.c

@@ -87,14 +87,15 @@ /* make it fall back to default theme */

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;