BUG in setGridPositionOnNextPages (PDF.as)
Opened this issue · 0 comments
GoogleCodeExporter commented
Ok I think there is a bug in setGridPositionOnNextPages function in PDF.as
(line 4040) (current revision 277)
public function
setGridPositionOnNextPages(xvalue:Number=10,yvalue:Number=10):void
{
nextPageX = yvalue;
nextPageY = xvalue;
}
the correct code should be:
public function
setGridPositionOnNextPages(xvalue:Number=10,yvalue:Number=10):void
{
nextPageX = xvalue;
nextPageY = yvalue;
}
Do you see the difference?
Original issue reported on code.google.com by marcus.f...@googlemail.com
on 1 Aug 2011 at 6:28