mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 19:42:05 +00:00
2008-06-16 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c: (clutter_actor_move_anchor_point): (clutter_actor_move_anchor_pointu): (clutter_actor_move_anchor_point_from_gravity): Fixed incorrect sign of position adjustment. Fixed replace call to _move_by with move_byu in _move_anchor_pointu. Stripped trailing whitespace.
This commit is contained in:
parent
8996406189
commit
1c4b1ce90e
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
|||||||
|
2008-06-16 Tomas Frydrych <tf@openedhand.com>
|
||||||
|
|
||||||
|
* clutter/clutter-actor.c:
|
||||||
|
(clutter_actor_move_anchor_point):
|
||||||
|
(clutter_actor_move_anchor_pointu):
|
||||||
|
(clutter_actor_move_anchor_point_from_gravity):
|
||||||
|
Fixed incorrect sign of position adjustment.
|
||||||
|
Fixed replace call to _move_by with move_byu in
|
||||||
|
_move_anchor_pointu.
|
||||||
|
|
||||||
|
Stripped trailing whitespace.
|
||||||
|
|
||||||
2008-06-15 Emmanuele Bassi <ebassi@openedhand.com>
|
2008-06-15 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
Bug #967 - Mismatch of Timeline::marker-reached signal signature
|
Bug #967 - Mismatch of Timeline::marker-reached signal signature
|
||||||
|
@ -6033,7 +6033,7 @@ clutter_actor_move_anchor_point (ClutterActor *self,
|
|||||||
priv->anchor_y = ay;
|
priv->anchor_y = ay;
|
||||||
|
|
||||||
if (priv->position_set)
|
if (priv->position_set)
|
||||||
clutter_actor_move_by (self, -dx, -dy);
|
clutter_actor_move_byu (self, dx, dy);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -6136,7 +6136,7 @@ clutter_actor_move_anchor_pointu (ClutterActor *self,
|
|||||||
priv->anchor_y = anchor_y;
|
priv->anchor_y = anchor_y;
|
||||||
|
|
||||||
if (priv->position_set)
|
if (priv->position_set)
|
||||||
clutter_actor_move_byu (self, -dx, -dy);
|
clutter_actor_move_byu (self, dx, dy);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -6199,7 +6199,7 @@ clutter_actor_move_anchor_point_from_gravity (ClutterActor *self,
|
|||||||
|
|
||||||
if (priv->position_set)
|
if (priv->position_set)
|
||||||
{
|
{
|
||||||
clutter_actor_move_byu (self, -dx, -dy);
|
clutter_actor_move_byu (self, dx, dy);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user