Fix bug with "Addresses per page" == 1
It was effectively "don't insert any pagebreaks" because the modulus condition could never be true.
This commit is contained in:
parent
2478a1369f
commit
bda4b469f1
1 changed files with 1 additions and 1 deletions
|
@ -6466,7 +6466,7 @@
|
|||
}
|
||||
if (paperArea.innerHTML != "") {
|
||||
// page break
|
||||
if (i % pageBreakAt == 1 && ninja.wallets.paperwallet.count >= pageBreakAt) {
|
||||
if ((i-1) % pageBreakAt == 0 && i >= pageBreakAt) {
|
||||
var pBreak = document.createElement("div");
|
||||
pBreak.setAttribute("class", "pagebreak");
|
||||
document.getElementById("paperkeyarea").appendChild(pBreak);
|
||||
|
|
Loading…
Add table
Reference in a new issue