If you put pins on either the top or bottom of a symbol, tragesym moves the name around and changes the positioning. However, this is only necessary if pins are on top, and the logic should ignore pins on the bottom. The following patch:
$ diff /usr/bin/tragesym tragesym 300c300 < if numpbottom > 0: --- > if numptop > 0: 310c310 < if (numptop + numpbottom > 0): --- > if (numptop > 0): 494c494 < if numptop + numpbottom > 0: --- > if numptop > 0: Results in much better symbols when you pins on the bottom and not the top. Matt _______________________________________________ geda-user mailing list [email protected] http://www.seul.org/cgi-bin/mailman/listinfo/geda-user

