[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
Re: gEDA-user: pcb option --layer-stack
> But what I really want, is a print of the components on the bottom side of
> the board. So I added --action-string 'SwapSides()' to the command line.
Add the solderside layer to your layer stack string (see attached
code snippet)
> Any idea where to look for a reason for the segfault?
gdb?
> Looks like the manual is derived from pcb/doc/pcb.texi . So I'll edit
> this file and and post a diff to this mailing list, right?
Yup. Git patch format, please.
for (i=argn-1; i>=0; i--)
{
if (strcasecmp (args[i], "rats") == 0)
PCB->RatOn = True;
else if (strcasecmp (args[i], "invisible") == 0)
PCB->InvisibleObjectsOn = True;
else if (strcasecmp (args[i], "pins") == 0)
PCB->PinOn = True;
else if (strcasecmp (args[i], "vias") == 0)
PCB->ViaOn = True;
else if (strcasecmp (args[i], "elements") == 0
|| strcasecmp (args[i], "silk") == 0)
PCB->ElementOn = True;
else if (strcasecmp (args[i], "mask") == 0)
SET_FLAG (SHOWMASKFLAG, PCB);
else if (strcasecmp (args[i], "solderside") == 0)
Settings.ShowSolderSide = 1;
else if (isdigit ((int) args[i][0]))
{
lno = atoi (args[i]);
ChangeGroupVisibility (lno, True, True);
}
else
_______________________________________________
geda-user mailing list
geda-user@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-user