2008-05-02 Emmanuele Bassi <ebassi@openedhand.com>

Bug #900 - clutter_actor_lower() and friends do not queue redraw

	* clutter/clutter-actor.c:
	(clutter_actor_raise),
	(clutter_actor_lower): Queue a redraw after raising and lowering
	and actor in the paint order stack. (#900)
This commit is contained in:
Emmanuele Bassi 2008-05-02 11:48:43 +00:00
parent af0843331a
commit a231418c9d
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2008-05-02 Emmanuele Bassi <ebassi@openedhand.com>
Bug #900 - clutter_actor_lower() and friends do not queue redraw
* clutter/clutter-actor.c:
(clutter_actor_raise),
(clutter_actor_lower): Queue a redraw after raising and lowering
and actor in the paint order stack. (#900)
2008-05-01 Richard Purdie <rpurdie@openedhand.com>
* configure.ac:

View File

@ -4392,6 +4392,9 @@ clutter_actor_raise (ClutterActor *self,
}
clutter_container_raise_child (CLUTTER_CONTAINER (parent), self, below);
if (CLUTTER_ACTOR_IS_VISIBLE (self))
clutter_actor_queue_redraw (self);
}
/**
@ -4431,6 +4434,9 @@ clutter_actor_lower (ClutterActor *self,
}
clutter_container_lower_child (CLUTTER_CONTAINER (parent), self, above);
if (CLUTTER_ACTOR_IS_VISIBLE (self))
clutter_actor_queue_redraw (self);
}
/**