Index: show_netnames.c =================================================================== --- show_netnames.c (revision 33917) +++ show_netnames.c (revision 33918) @@ -91,16 +91,16 @@ t.TextString = net->name; pcb_text_bbox(pcb_font(pcb, 0, 1), &t); - shn.w = t.bbox_naked.X2 - t.bbox_naked.X1; - shn.h = t.bbox_naked.Y2 - t.bbox_naked.Y1; + shn.w = t.BoundingBox.X2 - t.BoundingBox.X1; + shn.h = t.BoundingBox.Y2 - t.BoundingBox.Y1; shn.show = 1; htshn_set(&shn_cache, net, shn); } t.TextString = ""; - pcb_text_bbox(pcb_font(pcb, 0, 1), &t); - shn_nonet.w = t.bbox_naked.X2 - t.bbox_naked.X1; - shn_nonet.h = t.bbox_naked.Y2 - t.bbox_naked.Y1; + pcb_text_bbox(pcb_font(pcb, 0, 1), &t); + shn_nonet.w = t.BoundingBox.X2 - t.BoundingBox.X1; + shn_nonet.h = t.BoundingBox.Y2 - t.BoundingBox.Y1; shn_nonet.show = 1;