summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorP. F. Chimento <philip.chimento@gmail.com>2016-05-09 15:28:15 -0700
committerP. F. Chimento <philip.chimento@gmail.com>2016-05-09 15:28:15 -0700
commitc8ba991a6bd9f4637fe8c9c13a6822d194d24686 (patch)
tree3f5b350f258eca485a3f78efe17c5ad6bbe285c3
parent6169781faf1aaf250bda1acd3bf5b49bc1169635 (diff)
parent4c2ceb9b7997e58068f6d5ccd8e3f5bfe5d76ddf (diff)
Merge pull request #4144 from endlessm/T11336
customcontainer: keep children in order they were added https://phabricator.endlessm.com/T11336
-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));
}