Comparing version 3.14.0-beta6 to 3.14.0-beta7
@@ -7,3 +7,2 @@ "use strict"; | ||
var BufferLine_1 = require("../core/buffer/BufferLine"); | ||
var CharacterJoinerRegistry_1 = require("./CharacterJoinerRegistry"); | ||
var BaseRenderLayer = (function () { | ||
@@ -132,3 +131,3 @@ function BaseRenderLayer(_container, id, zIndex, _alpha, _colors) { | ||
BaseRenderLayer.prototype.drawChars = function (terminal, cell, x, y) { | ||
if (cell.isFgRGB() || cell.isBgRGB() || cell instanceof CharacterJoinerRegistry_1.JoinedCellData) { | ||
if (cell.isFgRGB() || cell.isBgRGB()) { | ||
this._drawUncachedChars(terminal, cell, x, y); | ||
@@ -135,0 +134,0 @@ return; |
{ | ||
"name": "xterm", | ||
"description": "Full xterm terminal, in your browser", | ||
"version": "3.14.0-beta6", | ||
"version": "3.14.0-beta7", | ||
"main": "lib/public/Terminal.js", | ||
@@ -6,0 +6,0 @@ "types": "typings/xterm.d.ts", |
@@ -14,3 +14,2 @@ /** | ||
import { CellData, AttributeData, WHITESPACE_CELL_CHAR, WHITESPACE_CELL_CODE } from '../core/buffer/BufferLine'; | ||
import { JoinedCellData } from './CharacterJoinerRegistry'; | ||
@@ -268,5 +267,5 @@ export abstract class BaseRenderLayer implements IRenderLayer { | ||
// Note: to avoid bad runtime JoinedCellData will be skipped | ||
// in the cache handler (atlasDidDraw == false) itself and | ||
// in the cache handler itself (atlasDidDraw == false) and | ||
// fall through to uncached later down below | ||
if (cell.isFgRGB() || cell.isBgRGB() || cell instanceof JoinedCellData) { | ||
if (cell.isFgRGB() || cell.isBgRGB()) { | ||
this._drawUncachedChars(terminal, cell, x, y); | ||
@@ -273,0 +272,0 @@ return; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2571117
38755