Fix click event bug caused by DomRenderer replaceChildren behavior

This commit is contained in:
Jacob Bandes-Storch
2024-12-13 13:57:17 -08:00
parent 41e8ae3959
commit 1978399259
+4
View File
@@ -161,6 +161,10 @@ export class DomRenderer extends Disposable implements IRenderer {
// Base CSS
let styles =
`${this._terminalSelector} .${ROW_CONTAINER_CLASS} {` +
// Disabling pointer events circumvents a browser behavior that prevents `click` events from
// being delivered if the target element is replaced during the click. This happened due to
// refresh() being called during the mousedown handler to start a selection.
` pointer-events: none;` +
` color: ${colors.foreground.css};` +
` font-family: ${this._optionsService.rawOptions.fontFamily};` +
` font-size: ${this._optionsService.rawOptions.fontSize}px;` +