summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-14 05:56:43 +0000
committerDana Jansens <danakj@orodu.net>2003-08-14 05:56:43 +0000
commit90861d60f73c87e9459dd84b92e83993c4520366 (patch)
tree482392ac9edb30f8372b13d7bb5b84f990b12ef7 /openbox
parent60bf9dcdb752aa282e1ffd7bbb359df4a4c78e77 (diff)
parse <here>true</here> for the activate action
Diffstat (limited to 'openbox')
-rw-r--r--openbox/action.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/action.c b/openbox/action.c
index 7e8da744..01176294 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -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);