mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Don't throw when rendering before atlas is set
This fixes a problem when loading the webgl addon before the terminal is attached. See microsoft/vscode#85048
This commit is contained in:
@@ -184,7 +184,7 @@ export class GlyphRenderer {
|
|||||||
|
|
||||||
let rasterizedGlyph: IRasterizedGlyph;
|
let rasterizedGlyph: IRasterizedGlyph;
|
||||||
if (!this._atlas) {
|
if (!this._atlas) {
|
||||||
throw new Error('atlas must be set before updating cell');
|
return;
|
||||||
}
|
}
|
||||||
if (chars && chars.length > 1) {
|
if (chars && chars.length > 1) {
|
||||||
rasterizedGlyph = this._atlas.getRasterizedGlyphCombinedChar(chars, bg, fg);
|
rasterizedGlyph = this._atlas.getRasterizedGlyphCombinedChar(chars, bg, fg);
|
||||||
|
|||||||
Reference in New Issue
Block a user