Don't know about any configuration options, but had the same issues and
changed it in my geocaching patch:
change this line in src/gps_functions.c after setting global_font_scale to
sth like 40:
@@ -94,7 +94,7 @@ osd_speed(gboolean force_redraw)
layout = pango_layout_new (context);
desc = pango_font_description_new();
- pango_font_description_set_size (desc, 60 * PANGO_SCALE);
+ pango_font_description_set_size (desc, 60 * PANGO_SCALE *
global_font_scale /100);
pango_layout_set_font_description (layout, desc);
pango_layout_set_text (layout, buffer, strlen(buffer));
HTH, Stefan
On Tue, Jan 5, 2010 at 6:39 PM, vancel35 <vancel@thespazcat.com> wrote: