From 0563b9cfaf379489eb8f79c8999fd3d1654457d5 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Thu, 6 Mar 2008 13:39:56 +0000 Subject: [PATCH] 2008-02-28 Gwenole Beauchesne Signed off by: Emmanuele Bassi * clutter/clutter-group.c (clutter_group_real_lower): Fix to actually lower the actor under the 'above' actor. (#822) --- ChangeLog | 7 +++++++ clutter/clutter-group.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c7759825e..0389ea046 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-02-28 Gwenole Beauchesne + + Signed off by: Emmanuele Bassi + + * clutter/clutter-group.c (clutter_group_real_lower): Fix to + actually lower the actor under the 'above' actor. (#822) + 2008-03-06 Emmanuele Bassi * clutter/clutter-entry.h: diff --git a/clutter/clutter-group.c b/clutter/clutter-group.c index 5a0320a0c..ef6222c2d 100644 --- a/clutter/clutter-group.c +++ b/clutter/clutter-group.c @@ -391,7 +391,7 @@ clutter_group_real_lower (ClutterContainer *container, { gint pos; - pos = g_list_index (priv->children, sibling) + 1; + pos = g_list_index (priv->children, sibling); priv->children = g_list_insert (priv->children, actor, pos); }