From 011ebcdf1eb5f146eda715438881e791e618b1c0 Mon Sep 17 00:00:00 2001 From: ian Date: Tue, 7 Sep 2004 22:57:07 +0000 Subject: [PATCH] fix y dimension --- pcb/pcb-panelise | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcb/pcb-panelise b/pcb/pcb-panelise index 58b02ca..6a3bde3 100755 --- a/pcb/pcb-panelise +++ b/pcb/pcb-panelise @@ -149,7 +149,7 @@ sub op__PCB { @thiscoords= @a[1..2]; transform(0,@thiscoords); $xmax= $xpos + $thiscoords[0] if $xpos + $thiscoords[0] > $xmax; - $ymax= $ypos + $thiscoords[0] if $ypos + $thiscoords[0] > $xmax; + $ymax= $thiscoords[1] if $thiscoords[1] > $ymax; } sub endfile__ { $ypos= $thiscoords[1] + $gap; -- 2.30.2