parse <here>true</here> for the activate action
This commit is contained in:
parent
60bf9dcdb7
commit
90861d60f7
1 changed files with 3 additions and 0 deletions
|
@ -716,6 +716,9 @@ ObAction *action_parse(xmlDocPtr doc, xmlNodePtr node)
|
|||
} else if (act->func == action_send_to_desktop_dir) {
|
||||
if ((n = parse_find_node("wrap", node->xmlChildrenNode)))
|
||||
act->data.sendtodir.wrap = parse_bool(doc, n);
|
||||
} else if (act->func == action_activate) {
|
||||
if ((n = parse_find_node("here", node->xmlChildrenNode)))
|
||||
act->data.activate.here = parse_bool(doc, n);
|
||||
}
|
||||
}
|
||||
g_free(actname);
|
||||
|
|
Loading…
Reference in a new issue