From de5045d88e26169223460398c86d73bb166bbbcd Mon Sep 17 00:00:00 2001 From: o9000 Date: Wed, 21 Jan 2015 00:01:40 +0000 Subject: [PATCH] tooltip: Round up y coordinate of text (looks slightly better) git-svn-id: http://tint2.googlecode.com/svn/trunk@659 121b4492-b84c-0410-8b4c-0d4edfb3f3cc --- src/tooltip/tooltip.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tooltip/tooltip.c b/src/tooltip/tooltip.c index 714e0a3..65738cc 100644 --- a/src/tooltip/tooltip.c +++ b/src/tooltip/tooltip.c @@ -241,7 +241,9 @@ void tooltip_update() pango_layout_set_height(layout, height*PANGO_SCALE); pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END); // I do not know why this is the right way, but with the below cairo_move_to it seems to be centered (horiz. and vert.) - cairo_move_to(c, -r1.x/2+g_tooltip.bg->border.width+g_tooltip.paddingx, -r1.y/2+g_tooltip.bg->border.width+g_tooltip.paddingy); + cairo_move_to(c, + -r1.x/2 + g_tooltip.bg->border.width + g_tooltip.paddingx, + -r1.y/2 + 1 + g_tooltip.bg->border.width + g_tooltip.paddingy); pango_cairo_show_layout (c, layout); g_object_unref (layout);