]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/if.c
Merge branch 'backport' into work
[chaz/openbox] / openbox / actions / if.c
index 63a7fbcd20d10c235282ce5e6fe99888e9dec06b..833bdd3a19764669466cd0ae7a50760f98a4c50d 100644 (file)
@@ -82,7 +82,7 @@ static gpointer setup_func(xmlNodePtr node)
         m = obt_parse_find_node(n->children, "action");
         while (m) {
             ObActionsAct *action = actions_parse(m);
-            if (action) o->thenacts = g_slist_prepend(o->thenacts, action);
+            if (action) o->thenacts = g_slist_append(o->thenacts, action);
             m = obt_parse_find_node(m->next, "action");
         }
     }
@@ -92,7 +92,7 @@ static gpointer setup_func(xmlNodePtr node)
         m = obt_parse_find_node(n->children, "action");
         while (m) {
             ObActionsAct *action = actions_parse(m);
-            if (action) o->elseacts = g_slist_prepend(o->elseacts, action);
+            if (action) o->elseacts = g_slist_append(o->elseacts, action);
             m = obt_parse_find_node(m->next, "action");
         }
     }
This page took 0.021265 seconds and 4 git commands to generate.