From d945884cb11d347e27804bba402c28a6129fd099 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 13 Mar 2011 10:52:09 +0000 Subject: Fix font sizing in text widget svn path=/trunk/netsurf/; revision=12016 --- framebuffer/fbtk/text.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'framebuffer/fbtk/text.c') diff --git a/framebuffer/fbtk/text.c b/framebuffer/fbtk/text.c index fff35bba4..2353b08b9 100644 --- a/framebuffer/fbtk/text.c +++ b/framebuffer/fbtk/text.c @@ -47,6 +47,9 @@ ((((7 * ((c1 >> 8) & 0xff)) >> 3) + 32) << 8) | \ ((((7 * (c1 & 0xff)) >> 3) + 32) << 0)) +/* Convert pixels to points, assuming a DPI of 90 */ +#define px_to_pt(x) (((x) * 72) / 90) + /** Text redraw callback. * * Called when a text widget requires redrawing. @@ -91,7 +94,7 @@ fb_redraw_text(fbtk_widget_t *widget, fbtk_callback_info *cbi ) if (widget->u.text.text != NULL) { fh = widget->height - border - border; font_style.family = PLOT_FONT_FAMILY_SANS_SERIF; - font_style.size = fh * FONT_SIZE_SCALE; + font_style.size = px_to_pt(fh) * FONT_SIZE_SCALE; font_style.weight = 400; font_style.flags = FONTF_NONE; font_style.background = widget->bg; @@ -189,7 +192,7 @@ fb_redraw_text_button(fbtk_widget_t *widget, fbtk_callback_info *cbi ) if (widget->u.text.text != NULL) { fh = widget->height - border - border; font_style.family = PLOT_FONT_FAMILY_SANS_SERIF; - font_style.size = fh * FONT_SIZE_SCALE; + font_style.size = px_to_pt(fh) * FONT_SIZE_SCALE; font_style.weight = 400; font_style.flags = FONTF_NONE; font_style.background = widget->bg; -- cgit v1.2.3