Skip to content

Commit

Permalink
fix for issue trampgeek#196
Browse files Browse the repository at this point in the history
  • Loading branch information
chrahe committed Feb 8, 2024
1 parent 92ec60b commit 54f22cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amd/src/ui_ace_gapfiller.js
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ define(['jquery'], function($) {
// Update any gaps that come after this one on the same line
for (let i=0; i < gaps.length; i++) {
let other = gaps[i];
if (other.range.start.row === this.range.start.row && other.range.start.column > this.range.end.column) {
if (other.range.start.row === this.range.start.row && other.range.start.column > this.range.start.column) {
other.range.start.column += delta;
other.range.end.column += delta;
}
Expand Down

0 comments on commit 54f22cf

Please sign in to comment.