Robert Bragg b898f0e227 never presume queuing redraws on invisible actors is redundant
This replaces code like this:
  if (CLUTTER_ACTOR_IS_VISIBLE (self))
    clutter_actor_queue_redraw (self);
with:
  clutter_actor_queue_redraw (self);

clutter_actor_queue_redraw internally knows what can be optimized when
the actor is not visible, but it also knows that the queue_redraw signal
must always be sent in case a ClutterClone is cloning a hidden actor.
2010-02-12 14:05:00 +00:00
..
2010-02-10 15:04:53 +00:00
2009-11-06 11:48:42 +00:00
2009-01-20 18:47:50 +00:00
2010-02-01 10:40:34 +00:00
2009-10-14 11:31:26 +01:00
2010-01-20 00:38:07 +00:00
2009-07-10 11:38:42 +01:00
2010-02-04 21:10:02 +00:00
2010-02-03 14:38:13 +00:00
2010-02-01 10:40:34 +00:00
2010-02-01 10:40:34 +00:00
2010-02-07 18:25:19 +00:00
2009-10-16 15:55:05 +01:00
2010-02-07 18:25:19 +00:00