You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using save_pdf or save_sheet with (completely full) sprues, I end up getting a blank page after all the full pages.
I expect to only get pages with card data.
I believe this is an off-by-one error in /lib/squib/graphics/save_sprue.rb (see below), but I'm not entirely sure how. Note that this is for completely full sprues (I haven't tested for less-than-full).
defrender_sheet(range)#...cc=next_page_if_needed(cc,i,per_sheet)#...enddefnext_page_if_needed(cc,i,per_sheet)returnccunless(i != 0) && (i % per_sheet).zero?draw_overlay_above_cardscccc=draw_pageccdraw_overlay_below_cardscc@page_number += 1ccend
The text was updated successfully, but these errors were encountered:
Using save_pdf or save_sheet with (completely full) sprues, I end up getting a blank page after all the full pages.
I expect to only get pages with card data.
I believe this is an off-by-one error in /lib/squib/graphics/save_sprue.rb (see below), but I'm not entirely sure how. Note that this is for completely full sprues (I haven't tested for less-than-full).
The text was updated successfully, but these errors were encountered: