2008-02-28 Gwenole Beauchesne <gbeauchesne@splitted-desktop.org>

Signed off by: Emmanuele Bassi <ebassi@openedhand.com>

	* clutter/clutter-group.c (clutter_group_real_lower): Fix to
	actually lower the actor under the 'above' actor. (#822)
This commit is contained in:
Emmanuele Bassi 2008-03-06 13:39:56 +00:00
parent daea8af85e
commit 0563b9cfaf
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-02-28 Gwenole Beauchesne <gbeauchesne@splitted-desktop.org>
Signed off by: Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-group.c (clutter_group_real_lower): Fix to
actually lower the actor under the 'above' actor. (#822)
2008-03-06 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-entry.h:

View File

@ -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);
}