parse <here>true</here> for the activate action

This commit is contained in:
Dana Jansens 2003-08-14 05:56:43 +00:00
parent 60bf9dcdb7
commit 90861d60f7

View file

@ -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);