all repos — openbox @ a65b1d202f11a0e1e87b9343a9a620321e84f6cf

openbox fork - make it a bit more like ryudo

allow actions and chains at the same level
Dana Jansens danakj@orodu.net
commit

a65b1d202f11a0e1e87b9343a9a620321e84f6cf

parent

8c68c9ab0f75514ee4f0336e566ac2c02ac20b65

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M openbox/config.copenbox/config.c

@@ -283,13 +283,13 @@ parse_attr_bool("chroot", node, &is_chroot);

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;