Skip to content

Commit

Permalink
Merge pull request #4438 from xtermjs/jerch-patch-1
Browse files Browse the repository at this point in the history
fix BCE render bug in canvas renderer
  • Loading branch information
Tyriar committed Mar 15, 2023
2 parents a359c7c + 49fdacb commit 21f48ba
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions addons/xterm-addon-canvas/src/TextRenderLayer.ts
Expand Up @@ -96,10 +96,11 @@ export class TextRenderLayer extends BaseRenderLayer {
}

// exit early for NULL and SP
const code = cell.getCode();
if (code === 0 || code === 32) {
continue;
}
// NOTE: commented out due to #4120 (needs a more clever patch to keep things performant)
// const code = cell.getCode();
// if (code === 0 || code === 32) {
// continue;
// }

// Process any joined character ranges as needed. Because of how the
// ranges are produced, we know that they are valid for the characters
Expand Down

0 comments on commit 21f48ba

Please sign in to comment.