Skip to content

Commit

Permalink
Restore _getPointerEventListeners
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmaa committed Nov 6, 2024
1 parent ecd6137 commit 0ac18d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/js/language/text-scanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ export class TextScanner extends EventDispatcher {
if (this._searchOnClickOnly) {
eventListenerInfos = this._getMouseClickOnlyEventListeners(capture);
} else {
eventListenerInfos = [...this._getMouseEventListeners(capture)];
eventListenerInfos = [...this._getPointerEventListeners(capture), ...this._getMouseEventListeners(capture)];
if (this._scanWithoutMousemove) {
eventListenerInfos.push(...this._getKeyboardEventListeners(capture));
}
Expand Down

0 comments on commit 0ac18d7

Please sign in to comment.