x11: only queue clipped redraw for Expose

When we handle Expose events we try and queue a clipped redraw of the
stage, but for some reason we were also redundantly calling
clutter_actor_queue_redraw for the stage which would negate the request
to queue a clipped redraw.
This commit is contained in:
Robert Bragg 2010-11-23 14:30:08 +00:00
parent 1b7c895a2d
commit 52bf38c38c

View File

@ -743,8 +743,6 @@ event_translate (ClutterBackend *backend,
ClutterVertex origin;
CLUTTER_NOTE (MULTISTAGE, "expose for stage: %p, redrawing", stage);
clutter_actor_queue_redraw (CLUTTER_ACTOR (stage));
CLUTTER_NOTE (MULTISTAGE,
"expose for stage: %p, "
"redrawing (x=%d, y=%d, width=%d, height=%d)",