From: Ingo Bürk Date: Fri, 26 Oct 2018 07:49:35 +0000 (+0200) Subject: Merge pull request #3465 from soumya92/next X-Git-Tag: 4.16~5 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=commitdiff_plain;h=37e2b5822658af39be932af9184457337bf163fe;hp=3745e6f4843b638fcc73c3b499bdae4bc6f6132c Merge pull request #3465 from soumya92/next Add "modifiers" to events sent by i3bar --- diff --git a/libi3/font.c b/libi3/font.c index 7be84ee0..c06bae00 100644 --- a/libi3/font.c +++ b/libi3/font.c @@ -109,9 +109,8 @@ static void draw_text_pango(const char *text, size_t text_len, 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); - /* Center the piece of text vertically if its height is smaller than the - * cached font height, and just let "high" symbols fall out otherwise. */ - int yoffset = abs(height - savedFont->height) / 2; + /* Center the piece of text vertically. */ + int yoffset = (height - savedFont->height) / 2; cairo_move_to(cr, x, y - yoffset); pango_cairo_show_layout(cr, layout);