Don't run actions in focus cycling actions backwards either (as in 664b0b4e94
).
This commit is contained in:
parent
5a45d4e7bc
commit
617effd275
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
|
||||||
m = parse_find_node("action", n->xmlChildrenNode);
|
m = parse_find_node("action", n->xmlChildrenNode);
|
||||||
while (m) {
|
while (m) {
|
||||||
ObActionsAct *action = actions_parse(i, doc, m);
|
ObActionsAct *action = actions_parse(i, doc, m);
|
||||||
if (action) o->actions = g_slist_prepend(o->actions, action);
|
if (action) o->actions = g_slist_append(o->actions, action);
|
||||||
m = parse_find_node("action", m->next);
|
m = parse_find_node("action", m->next);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,7 +93,7 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
|
||||||
m = parse_find_node("action", n->xmlChildrenNode);
|
m = parse_find_node("action", n->xmlChildrenNode);
|
||||||
while (m) {
|
while (m) {
|
||||||
ObActionsAct *action = actions_parse(i, doc, m);
|
ObActionsAct *action = actions_parse(i, doc, m);
|
||||||
if (action) o->actions = g_slist_prepend(o->actions, action);
|
if (action) o->actions = g_slist_append(o->actions, action);
|
||||||
m = parse_find_node("action", m->next);
|
m = parse_find_node("action", m->next);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue