fix transparency when used with valign.

This commit is contained in:
Christopher Jeffrey 2015-07-21 19:12:54 -07:00
parent 1e57352eee
commit f0556b500b
1 changed files with 1 additions and 1 deletions

View File

@ -1948,7 +1948,7 @@ Element.prototype.render = function() {
for (x = Math.max(xi, 0); x < xl; x++) {
if (!lines[y][x]) break;
lines[y][x][0] = colors.blend(attr, lines[y][x][0]);
lines[y][x][1] = ch;
// lines[y][x][1] = bch;
lines[y].dirty = true;
}
}