mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Add handling of invisible
This commit is contained in:
@@ -180,7 +180,11 @@ export class DomRendererRowFactory {
|
||||
&& !isDecorated
|
||||
) {
|
||||
// no span alterations, thus only account chars skipping all code below
|
||||
text += chars;
|
||||
if (cell.isInvisible()) {
|
||||
text += WHITESPACE_CELL_CHAR;
|
||||
} else {
|
||||
text += chars;
|
||||
}
|
||||
cellAmount++;
|
||||
continue;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user