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
This commit is contained in:
parent
54154e8298
commit
de5045d88e
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue