Index: trunk/src_plugins/draw_csect/draw_csect.c =================================================================== --- trunk/src_plugins/draw_csect/draw_csect.c (revision 7047) +++ trunk/src_plugins/draw_csect/draw_csect.c (revision 7048) @@ -61,6 +61,7 @@ t.TextString = (char *)txt; t.Direction = dir; t.Scale = scale; + t.fid = 0; /* use the default font */ t.Flags = pcb_no_flags(); DrawTextLowLevel(&t, 0); return &t; @@ -76,6 +77,7 @@ t.TextString = (char *)txt; t.Direction = dir; t.Scale = scale; + t.fid = 0; /* use the default font */ t.Flags = pcb_no_flags(); DrawTextLowLevel(&t, th); return &t; @@ -91,6 +93,7 @@ t.TextString = (char *)txt; t.Direction = dir; t.Scale = scale; + t.fid = 0; /* use the default font */ t.Flags = pcb_no_flags(); pcb_gui->set_color(gc, bgcolor); Index: trunk/src_plugins/draw_fab/draw_fab.c =================================================================== --- trunk/src_plugins/draw_fab/draw_fab.c (revision 7047) +++ trunk/src_plugins/draw_fab/draw_fab.c (revision 7048) @@ -79,6 +79,7 @@ t.TextString = tmp; t.Scale = PCB_COORD_TO_MIL(TEXT_SIZE); /* pcnt of 100mil base height */ t.Flags = pcb_no_flags(); + t.fid = 0; /* use the default font */ t.X = x; t.Y = y; for (i = 0; tmp[i]; i++)