summaryrefslogtreecommitdiff
path: root/endless
diff options
context:
space:
mode:
authorMatt Watson <mattdangerw@gmail.com>2016-05-06 14:56:38 -0700
committerMatt Watson <mattdangerw@gmail.com>2016-05-06 14:56:38 -0700
commit4c2ceb9b7997e58068f6d5ccd8e3f5bfe5d76ddf (patch)
tree3f5b350f258eca485a3f78efe17c5ad6bbe285c3 /endless
parent6169781faf1aaf250bda1acd3bf5b49bc1169635 (diff)
customcontainer: keep children in order they were added
We were flipping the order, not sure why we did this. https://phabricator.endlessm.com/T11336
Diffstat (limited to 'endless')
-rw-r--r--endless/eoscustomcontainer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/endless/eoscustomcontainer.c b/endless/eoscustomcontainer.c
index a68745b..bf739e4 100644
--- a/endless/eoscustomcontainer.c
+++ b/endless/eoscustomcontainer.c
@@ -56,7 +56,7 @@ eos_custom_container_add (GtkContainer *container,
EosCustomContainer *self = EOS_CUSTOM_CONTAINER (container);
EosCustomContainerPrivate *priv = eos_custom_container_get_instance_private (self);
- priv->children = g_list_prepend (priv->children, child);
+ priv->children = g_list_append (priv->children, child);
gtk_widget_set_parent (child, GTK_WIDGET (container));
}