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:
Emmanuele Bassi 2008-01-25 21:48:20 +00:00
parent 45c040f5c4
commit 27dfc4e1ec
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2008-01-25 Emmanuele Bassi <ebassi@sprite>
* clutter/clutter-label.c (clutter_label_query_coords): Check

View File

@ -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