xtermjs / xterm.js

A terminal for the web
https://xtermjs.org/
MIT License
17.04k stars 1.6k forks source link

DomRenderer: fix touch scrolling starting from text #4979

Open xdavidwu opened 4 months ago

xdavidwu commented 4 months ago

When scrolling with touchscreen starting from text, as soon as touch leaves the text span, the touch event stops, making touch-scrolling able to scroll one row only.

This fixes it by setting pointer-events: none to text spans, excluding them from hit-testing so that touch events won't be constrained to them.

Fixes #3613