2008-01-25 Emmanuele Bassi <ebassi@sprite>
* clutter/clutter-group.c (sort_z_order): Invert condition to return to the same as in revision 1976.
This commit is contained in:
@ -389,7 +389,7 @@ sort_z_order (gconstpointer a,
|
||||
depth_a = clutter_actor_get_depth (CLUTTER_ACTOR(a));
|
||||
depth_b = clutter_actor_get_depth (CLUTTER_ACTOR(b));
|
||||
|
||||
return (depth_b - depth_a);
|
||||
return (depth_a - depth_b);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user