diff options
| author | Dana Jansens <danakj@orodu.net> | 2011-10-15 15:45:27 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2011-10-15 15:50:10 -0400 |
| commit | 1d2da703ec19d5994e6c08f182ac5c0558a0564e (patch) | |
| tree | 1cf95a4bf1e21b748ba4d25e802ae05871cc391f /openbox | |
| parent | 63fcce37919df578e2c113a88154c92d77221abe (diff) | |
Parse all the actions in a single menu item
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/menu.c b/openbox/menu.c index daea0b65..1294c4c9 100644 --- a/openbox/menu.c +++ b/openbox/menu.c @@ -287,7 +287,7 @@ static void parse_menu_item(xmlNodePtr node, gpointer data) ObActionsAct *action = actions_parse(c); if (action) acts = g_slist_append(acts, action); - c = obt_xml_find_node(node->next, "action"); + c = obt_xml_find_node(c->next, "action"); } e = menu_add_normal(state->parent, -1, label, acts, TRUE); |
