fix(web): prevent scrolling when setting focus on the canvas (#838)

This commit is contained in:
Alex Yusiuk
2025-06-24 10:19:42 -04:00
committed by GitHub
parent d3d758891b
commit dfb13ec499
@@ -621,7 +621,7 @@
}
function setMouseIn(evt: MouseEvent) {
canvas.focus();
canvas.focus({ preventScroll: true });
remoteDesktopService.mouseIn(evt);
}