From a65b1d202f11a0e1e87b9343a9a620321e84f6cf Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 26 Apr 2007 02:12:40 +0000 Subject: [PATCH] allow actions and chains at the same level --- openbox/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/config.c b/openbox/config.c index 2ed6921e..36ee408c 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -283,13 +283,13 @@ static void parse_key(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, keylist = g_list_append(keylist, key); - /* a node either contains actions or key bindings */ if ((n = parse_find_node("keybind", node->children))) { while (n) { parse_key(i, doc, n, keylist); n = parse_find_node("keybind", n->next); } - } else if ((n = parse_find_node("action", node->children))) { + } + if ((n = parse_find_node("action", node->children))) { while (n) { ObAction *action; -- 2.44.0