1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-10-04 09:20:23 +03:00

sch2fig/cairo.c (cr_pdf_end): reduce line width from 3 to 2 points

With 3 points, lines get too far in realtion to text and junctions.
This commit is contained in:
Werner Almesberger 2016-08-01 01:39:47 -03:00
parent 55f10b8769
commit 1d3c7d635b

View File

@ -357,7 +357,7 @@ static void cr_pdf_end(void *ctx)
cairo_select_font_face(cc->cr, "Helvetica", CAIRO_FONT_SLANT_NORMAL,
CAIRO_FONT_WEIGHT_BOLD);
cairo_set_line_width(cc->cr, 3);
cairo_set_line_width(cc->cr, 2);
for (i = 0; i != cc->n_sheets; i++) {
set_color(cc->cr, COLOR_WHITE);