Index: work/util/ttf2lht/drv_poly.c =================================================================== --- work/util/ttf2lht/drv_poly.c (revision 18934) +++ work/util/ttf2lht/drv_poly.c (revision 18935) @@ -33,7 +33,15 @@ static int stroke_poly_line_to(const FT_Vector *to, void *s_) { poly_stroke_t *s = (poly_stroke_t *)s_; - /*printf("line %f %f %ld %ld\n", s->s.x, s->s.y, to->x, to->y);*/ + pcb_vnode_t *tmp; + pcb_vector_t v; + + v[0] = to->x; + v[1] = to->y; + + tmp = pcb_poly_node_create(v); + pcb_poly_vertex_include(s->curr->head.prev, tmp); + s->s.x = to->x; s->s.y = to->y; return 0;