xterm-addon-webgl
Advanced tools
Comparing version 0.14.0-beta.48 to 0.14.0-beta.49
{ | ||
"name": "xterm-addon-webgl", | ||
"version": "0.14.0-beta.48", | ||
"version": "0.14.0-beta.49", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "The xterm.js authors", |
@@ -354,3 +354,3 @@ /** | ||
let row: number; | ||
let line: IBufferLine; | ||
let line: IBufferLine | undefined; | ||
let joinedRanges: [number, number][]; | ||
@@ -368,3 +368,6 @@ let isJoined: boolean; | ||
row = y + terminal.buffer.ydisp; | ||
line = terminal.buffer.lines.get(row)!; | ||
line = terminal.buffer.lines.get(row); | ||
if (!line) { | ||
break; | ||
} | ||
this._model.lineLengths[y] = 0; | ||
@@ -371,0 +374,0 @@ joinedRanges = this._characterJoinerService.getJoinedCharacters(row); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
536837
2373