Index: io_hyp.c =================================================================== --- io_hyp.c (revision 23610) +++ io_hyp.c (revision 23611) @@ -45,6 +45,7 @@ #include "parser.h" #include "board.h" #include "write.h" +#include "obj_rat.h" static const char *hyp_cookie = "hyp importer"; @@ -148,6 +149,7 @@ int res = hyp_parse(pcb->Data, Filename, 0); pcb_layer_auto_fixup(pcb); pcb_layer_colors_from_conf(pcb, 1); + pcb_rat_all_anchor_guess(pcb->Data); return res; } Index: parser.c =================================================================== --- parser.c (revision 23610) +++ parser.c (revision 23611) @@ -2295,7 +2295,7 @@ } pcb_rat_new(hyp_dest, -1, x2coord(h->x1), y2coord(h->y1), x2coord(h->x2), y2coord(h->y2), layer1_grp_id, layer2_grp_id, - xy2coord(h->width), pcb_no_flags()); + xy2coord(h->width), pcb_no_flags(), NULL, NULL); return 0; }