Implements token correction.

This commit is contained in:
Henning Dieterichs
2021-06-15 12:23:17 +02:00
parent 8a9ac9a851
commit ddab7a7171
8 changed files with 162 additions and 38 deletions

View File

@@ -148,7 +148,7 @@ function createLineBreaks(requests: string[], fontInfo: FontInfo, tabSize: numbe
}
}
result[i] = new LineBreakData(breakOffsets, breakOffsetsVisibleColumn, wrappedTextIndentLength);
result[i] = new LineBreakData(breakOffsets, breakOffsetsVisibleColumn, wrappedTextIndentLength, null, null, null);
}
document.body.removeChild(containerDomNode);