--- trunk/src/map-tool.c 2009/08/19 12:35:25 63 +++ trunk/src/map-tool.c 2009/08/19 14:21:14 65 @@ -260,7 +260,11 @@ cairo_paint(cr); } +#ifndef BIG_BALLOONS #define LINE_SKIP 7 +#else +#define LINE_SKIP 12 +#endif static void balloon_draw_cb(cairo_t *cr, OsmGpsMapRect_t *rect, gpointer data) { @@ -292,7 +296,12 @@ CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD); +#ifndef BIG_BALLOONS cairo_set_font_size (cr, 20.0); +#else + cairo_set_font_size (cr, 36.0); +#endif + cairo_text_extents (cr, cache->id, &extents); /* display id right of icon vertically centered */ @@ -313,7 +322,11 @@ /* everything from here uses the same font */ cairo_select_font_face (cr, "Sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL); +#ifndef BIG_BALLOONS cairo_set_font_size (cr, 14.0); +#else + cairo_set_font_size (cr, 24.0); +#endif if(cache->name) { /* draw cache name */