diff options
author | Victor Kareh <[email protected]> | 2019-05-23 11:43:04 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-16 18:12:44 +0200 |
commit | fe5ddf58da98a9296742da70f4fc4633ea2374ad (patch) | |
tree | c596b175d94df3305ec6721800937bca6ceadc6f | |
parent | b6ec3af21d066d56ebf172b5720080bb79de651f (diff) | |
download | marco-fe5ddf58da98a9296742da70f4fc4633ea2374ad.tar.bz2 marco-fe5ddf58da98a9296742da70f4fc4633ea2374ad.tar.xz |
compositor: fix shadow size and placement
upstream commit:
https://gitlab.gnome.org/GNOME/metacity/commit/9fd053da
-rw-r--r-- | src/compositor/compositor-xrender.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/compositor/compositor-xrender.c b/src/compositor/compositor-xrender.c index 0d8b3b6c..0748e13e 100644 --- a/src/compositor/compositor-xrender.c +++ b/src/compositor/compositor-xrender.c @@ -648,8 +648,8 @@ shadow_picture_clip (Display *xdisplay, if (!visible_region) return; - shadow_dx = -1 * shadow_offsets_x [cw->shadow_type]; - shadow_dy = -1 * shadow_offsets_y [cw->shadow_type]; + shadow_dx = -1 * (int) shadow_offsets_x [cw->shadow_type] - borders.invisible.left; + shadow_dy = -1 * (int) shadow_offsets_y [cw->shadow_type] - borders.invisible.top; rect.x = 0; rect.y = 0; @@ -1094,18 +1094,21 @@ win_extents (MetaCompWindow *cw) meta_frame_calc_borders (frame, &borders); } - cw->shadow_dx = shadow_offsets_x [cw->shadow_type]; - cw->shadow_dy = shadow_offsets_y [cw->shadow_type]; + cw->shadow_dx = (int) shadow_offsets_x [cw->shadow_type] + borders.invisible.left; + cw->shadow_dy = (int) shadow_offsets_y [cw->shadow_type] + borders.invisible.top; if (!cw->shadow) { double opacity = SHADOW_OPACITY; + int invisible_width = borders.invisible.left + borders.invisible.right; + int invisible_height = borders.invisible.top + borders.invisible.bottom; + if (cw->opacity != (guint) OPAQUE) opacity = opacity * ((double) cw->opacity) / ((double) OPAQUE); cw->shadow = shadow_picture (display, screen, cw, opacity, borders, - cw->attrs.width + cw->attrs.border_width * 2, - cw->attrs.height + cw->attrs.border_width * 2, + cw->attrs.width - invisible_width + cw->attrs.border_width * 2, + cw->attrs.height - invisible_height + cw->attrs.border_width * 2, &cw->shadow_width, &cw->shadow_height); } |