Skip to content

Commit

Permalink
fix small bug with pagelistdetails
Browse files Browse the repository at this point in the history
  • Loading branch information
acestronautical committed Feb 6, 2024
1 parent 7138d31 commit 1ccd0dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wacky_imposition.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class WackyImposition{
constructor(pages, duplex,format, isPacked) {
this.duplex=duplex;
this.sigconfig=[] // sig_count looks at the length of this array, sig_arrange joins them together with a ,;
this.pagelist = [[]];
this.pagelistdetails = [[]];
this.isPacked = isPacked;
console.log("Constructor sees ", pages)
// for UI estimates
Expand Down Expand Up @@ -623,4 +623,4 @@ export class WackyImposition{
rotate180(page) {
page.vFlip = !page.vFlip;
}
}
}

0 comments on commit 1ccd0dc

Please sign in to comment.