Skip to content

Commit

Permalink
Merge branch 'Tevemadar:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Tevemadar authored Oct 17, 2023
2 parents 8415098 + 910bdd8 commit 4ed0bf8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions webalign.html
Original file line number Diff line number Diff line change
Expand Up @@ -549,17 +549,17 @@
document.getElementById("undo").disabled = false;
document.getElementById("redo").disabled = true;

delete series.sections[stripidx].markers;
let idx = stripidx - 1;
while (idx >= 0 && !images[idx].anchored) {
delete series.sections[idx].markers;
idx--;
}
idx = stripidx + 1;
while (idx < images.length && !images[idx].anchored) {
delete series.sections[idx].markers;
idx++;
}
// delete series.sections[stripidx].markers;
// let idx = stripidx - 1;
// while (idx >= 0 && !images[idx].anchored) {
// delete series.sections[idx].markers;
// idx--;
// }
// idx = stripidx + 1;
// while (idx < images.length && !images[idx].anchored) {
// delete series.sections[idx].markers;
// idx++;
// }

propagate();
drawstrip();
Expand Down

0 comments on commit 4ed0bf8

Please sign in to comment.