From eba177342f00ee6efdc3eff05665f317e1a837ca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ingo=20B=C3=BCrk?= Date: Sun, 10 Sep 2017 17:03:09 +0200 Subject: [PATCH 1/1] Revert "Use OVER operator for drawing text (#2908)" (#2925) This reverts commit 16160462a30f186f5b72bb551ba2188670d4e45c. --- libi3/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi3/font.c b/libi3/font.c index aef8427b..81091ea7 100644 --- a/libi3/font.c +++ b/libi3/font.c @@ -105,7 +105,7 @@ static void draw_text_pango(const char *text, size_t text_len, pango_layout_set_text(layout, text, text_len); /* Do the drawing */ - cairo_set_operator(cr, CAIRO_OPERATOR_OVER); + cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); cairo_set_source_rgb(cr, pango_font_red, pango_font_green, pango_font_blue); pango_cairo_update_layout(cr, layout); pango_layout_get_pixel_size(layout, NULL, &height); -- 2.39.2