table: fix sorting depth

This commit is contained in:
Lionel Landwerlin 2012-03-18 18:03:30 +00:00
parent ccb38ed17d
commit 63e12a867c
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ mx_table_depth_sort_cb (gconstpointer a,
gconstpointer b)
{
gfloat depth_a = clutter_actor_get_depth ((ClutterActor *)a);
gfloat depth_b = clutter_actor_get_depth ((ClutterActor *)a);
gfloat depth_b = clutter_actor_get_depth ((ClutterActor *)b);
if (depth_a < depth_b)
return -1;