window-actor: Fix culling

At some point meta_window_actor_cull_out stopped calling
meta_cullable_cull_out_children which caused the unobscured region
to never be set for the stex.

https://bugzilla.gnome.org/show_bug.cgi?id=725216
This commit is contained in:
Adel Gadllah 2014-02-26 14:50:14 +01:00
parent 060e60f2a0
commit d85845426c

View File

@ -1471,6 +1471,7 @@ meta_window_actor_cull_out (MetaCullable *cullable,
{ {
MetaWindowActor *self = META_WINDOW_ACTOR (cullable); MetaWindowActor *self = META_WINDOW_ACTOR (cullable);
meta_cullable_cull_out_children (cullable, unobscured_region, clip_region);
meta_window_actor_set_clip_region_beneath (self, clip_region); meta_window_actor_set_clip_region_beneath (self, clip_region);
} }