sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 790887ce762fb51d18e966de22bd2ab5b6a593c7
parent 843ad38b3c427adb0bf319e9613d9813c8d9246c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed,  7 Jun 2017 22:45:33 -0400

Fix cairo blending on tray icons

Diffstat:
Mswaybar/render.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/swaybar/render.c b/swaybar/render.c @@ -350,9 +350,12 @@ void render(struct output *output, struct config *config, struct status_line *li tray_width -= tray_padding; tray_width -= item_size; + cairo_operator_t op = cairo_get_operator(cairo); + cairo_set_operator(cairo, CAIRO_OPERATOR_OVER); cairo_set_source_surface(cairo, render_item->icon, tray_width, tray_padding); cairo_rectangle(cairo, tray_width, tray_padding, item_size, item_size); cairo_fill(cairo); + cairo_set_operator(cairo, op); item->dirty = false; }