Index: trunk/src_plugins/export_fidocadj/fidocadj.c =================================================================== --- trunk/src_plugins/export_fidocadj/fidocadj.c (revision 6855) +++ trunk/src_plugins/export_fidocadj/fidocadj.c (revision 6856) @@ -184,9 +184,10 @@ PCB_TEXT_LOOP(ly) { char *s; + pcb_coord_t x0 = text->X, sx = text->BoundingBox.X2 - text->BoundingBox.X1; + pcb_coord_t y0 = text->Y, sy = text->BoundingBox.Y2 - text->BoundingBox.Y1; fprintf(f, "TY %ld %ld %ld %ld %d 0 %d * ", - crd(text->X), crd(text->X), - crd(text->BoundingBox.X2 - text->BoundingBox.X1), crd(text->BoundingBox.Y2 - text->BoundingBox.Y1), + crd(x0), crd(y0), crd(sx), crd(sy), text->Direction, fidoly); for(s = text->TextString; *s != '\0'; s++) { if (*s == ' ')