Adding missing parameter to GlyphRenderer

This commit is contained in:
Juan Campa
2019-01-18 15:25:58 -05:00
parent 98706aa7d2
commit e387b20b56
+1 -1
View File
@@ -89,7 +89,7 @@ export class WebglRenderer extends EventEmitter implements IRenderer {
this._terminal.screenElement.appendChild(this._canvas);
this._rectangleRenderer = new RectangleRenderer(this._terminal, this.colorManager, this._gl, this.dimensions);
this._glyphRenderer = new GlyphRenderer(this._terminal, this._gl, this.dimensions);
this._glyphRenderer = new GlyphRenderer(this._terminal, this.colorManager, this._gl, this.dimensions);
// Detect whether IntersectionObserver is detected and enable renderer pause
// and resume based on terminal visibility if so