* Clear a region by writing empty cells. Used when a node shrinks to * ensure stale content from the previous frame is removed.
(region: Rectangle, fromAbsolute?: boolean)
| 225 | * ensure stale content from the previous frame is removed. |
| 226 | */ |
| 227 | clear(region: Rectangle, fromAbsolute?: boolean): void { |
| 228 | this.operations.push({ type: 'clear', region, fromAbsolute }) |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Mark a region as non-selectable (excluded from fullscreen text |
no test coverage detected