]> git.sur5r.net Git - i3/i3/commitdiff
Always center text vertically 3473/head
authorSoumya <soumyasr@google.com>
Mon, 22 Oct 2018 18:47:41 +0000 (11:47 -0700)
committerSoumya <soumyasr@google.com>
Mon, 22 Oct 2018 19:59:08 +0000 (12:59 -0700)
libi3/font.c

index 3dca8124bbce32c7cdd97738244ec7af4e3c5fa7..7d776ad1350054ac1495e9747e9a9158dccc8cf0 100644 (file)
@@ -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);