summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <florian.muellner@gmail.com>2013-07-05 16:54:07 +0200
committerEmmanuele Bassi <ebassi@gnome.org>2013-11-20 23:18:04 +0000
commit0632c424973dc12c03e5a3e9a0b7c89b2546fd66 (patch)
tree866b06920336c32bc453bc7fa6801bfc78e891fc
parentb2480914d183cc2b8f3aa80c9802c8de7d75014c (diff)
downloadclutter-0632c424973dc12c03e5a3e9a0b7c89b2546fd66.tar.gz
actor: Minor cleanup
In clutter_allocate_align_fill(), x2/y2 may be set twice for no particular reason; save a couple of lines by not doing this. https://bugzilla.gnome.org/show_bug.cgi?id=703809 (cherry picked from commit 5bab9a8655346290f7ee0e4af972e3d085a6b818) Signed-off-by: Emmanuele Bassi <ebassi@gnome.org>
-rw-r--r--clutter/clutter-actor.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/clutter/clutter-actor.c b/clutter/clutter-actor.c
index 0962cd4f9..bfb971130 100644
--- a/clutter/clutter-actor.c
+++ b/clutter/clutter-actor.c
@@ -15336,16 +15336,10 @@ clutter_actor_allocate_align_fill (ClutterActor *self,
x_align = 1.0 - x_align;
if (!x_fill)
- {
- allocation.x1 += ((available_width - child_width) * x_align);
- allocation.x2 = allocation.x1 + child_width;
- }
+ allocation.x1 += ((available_width - child_width) * x_align);
if (!y_fill)
- {
- allocation.y1 += ((available_height - child_height) * y_align);
- allocation.y2 = allocation.y1 + child_height;
- }
+ allocation.y1 += ((available_height - child_height) * y_align);
out: