2008-06-16 Tomas Frydrych <tf@openedhand.com>

* clutter/clutter-actor.c:
	    (clutter_actor_move_anchor_point_from_gravity):
	    Fixed incorrect sign of position adjustment (revert of earlier
	    change).
This commit is contained in:
Tomas Frydrych 2008-06-16 14:14:19 +00:00
parent 6ec5cc538c
commit 2ccfd3c08f
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2008-06-16 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:
(clutter_actor_move_anchor_point_from_gravity):
Fixed incorrect sign of position adjustment (revert of earlier
change).
2008-06-16 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.c (clutter_actor_unparent): Reset the

View File

@ -6201,8 +6201,8 @@ clutter_actor_move_anchor_point_from_gravity (ClutterActor *self,
clutter_actor_set_anchor_point_from_gravity (self, gravity);
dx = ax - priv->anchor_x;
dy = ay - priv->anchor_y;
dx = priv->anchor_x - ax;
dy = priv->anchor_y - ay;
if (priv->position_set)
{