mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
window-group: Subtract the unredirected window in stage space
meta_window_group_paint tries to carefully figure out which parts of the scene it can avoid painting. One area it avoids painting is the region of the screen occupied by an unredirected window (if there's one present). When subtracting from the visible region, it gets the coordinate spaces confused, and ends up subtracting the area at the wrong offset. Fix this by translating the rectangle subtracted from the visible region. https://bugzilla.gnome.org/show_bug.cgi?id=677116
This commit is contained in:
parent
fbcddbcf3e
commit
bc96a14185
@ -236,8 +236,11 @@ meta_window_group_paint (ClutterActor *actor)
|
||||
|
||||
if (info->unredirected_window != NULL)
|
||||
{
|
||||
int x, y;
|
||||
cairo_rectangle_int_t unredirected_rect;
|
||||
meta_window_actor_get_shape_bounds (META_WINDOW_ACTOR (info->unredirected_window), &unredirected_rect);
|
||||
MetaWindow *window = meta_window_actor_get_meta_window (info->unredirected_window);
|
||||
|
||||
meta_window_get_outer_rect (window, &unredirected_rect);
|
||||
cairo_region_subtract_rectangle (visible_region, &unredirected_rect);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user