dont parse both keybindings and actions in the same block

This commit is contained in:
Dana Jansens 2007-04-26 03:12:47 +00:00
parent 1a300ab372
commit baa9ad1480

View file

@ -289,7 +289,7 @@ static void parse_key(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
n = parse_find_node("keybind", n->next); n = parse_find_node("keybind", n->next);
} }
} }
if ((n = parse_find_node("action", node->children))) { else if ((n = parse_find_node("action", node->children))) {
while (n) { while (n) {
ObAction *action; ObAction *action;