From: Kristian Høgsberg Date: Wed, 11 Feb 2009 00:48:47 +0000 (-0500) Subject: Re-init link when removing animation. X-Git-Tag: 0.85.0~611 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb8cd938b51a60e3ff1eb1f85b5dc7401a0286de;p=platform%2Fupstream%2Fwayland.git Re-init link when removing animation. --- diff --git a/wayland-system-compositor.c b/wayland-system-compositor.c index 384b86d..9ba4ea3 100644 --- a/wayland-system-compositor.c +++ b/wayland-system-compositor.c @@ -673,6 +673,7 @@ surface_destroy(struct wl_client *client, struct wlsc_compositor *ec = es->compositor; wl_list_remove(&es->link); + wl_list_remove(&es->animate.link); wlsc_surface_destroy(es, ec); schedule_repaint(ec); @@ -804,10 +805,12 @@ animate_surface(struct wlsc_animate *animate, tmp = s->current; wlsc_vector_subtract(&tmp, &s->target); - if (tmp.x * tmp.x + tmp.y * tmp.y + tmp.z * tmp.z > 0.001) + if (tmp.x * tmp.x + tmp.y * tmp.y + tmp.z * tmp.z > 0.001) { schedule_repaint(compositor); - else + } else { wl_list_remove(&s->animate.link); + wl_list_init(&s->animate.link); + } } static void