]> Dogcows Code - chaz/openbox/commitdiff
Don't run actions in If in reverse order.
authorMikael Magnusson <mikachu@comhem.se>
Sun, 2 Mar 2008 00:51:06 +0000 (01:51 +0100)
committerMikael Magnusson <mikachu@comhem.se>
Sun, 2 Mar 2008 12:49:40 +0000 (13:49 +0100)
openbox/actions/if.c

index a35c61fce70a96c4df8944c4294957ea4e986409..4c989664b3470df060bfb0aaee038013cc4fad97 100644 (file)
@@ -86,7 +86,7 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
         m = parse_find_node("action", n->xmlChildrenNode);
         while (m) {
             ObActionsAct *action = actions_parse(i, doc, m);
-            if (action) o->thenacts = g_slist_prepend(o->thenacts, action);
+            if (action) o->thenacts = g_slist_append(o->thenacts, action);
             m = parse_find_node("action", m->next);
         }
     }
@@ -96,7 +96,7 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
         m = parse_find_node("action", n->xmlChildrenNode);
         while (m) {
             ObActionsAct *action = actions_parse(i, doc, m);
-            if (action) o->elseacts = g_slist_prepend(o->elseacts, action);
+            if (action) o->elseacts = g_slist_append(o->elseacts, action);
             m = parse_find_node("action", m->next);
         }
     }
This page took 0.024869 seconds and 4 git commands to generate.