We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a359c7c commit 49fdacbCopy full SHA for 49fdacb
addons/xterm-addon-canvas/src/TextRenderLayer.ts
@@ -96,10 +96,11 @@ export class TextRenderLayer extends BaseRenderLayer {
96
}
97
98
// exit early for NULL and SP
99
- const code = cell.getCode();
100
- if (code === 0 || code === 32) {
101
- continue;
102
- }
+ // 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;
103
+ // }
104
105
// Process any joined character ranges as needed. Because of how the
106
// ranges are produced, we know that they are valid for the characters
0 commit comments