Aaron Yoder
10/01/2021, 9:19 AMIgor Demin
10/02/2021, 8:04 AMhow to disable scrollbarsYou mean to disable scrolling itself? Have you tried to return
true
in mouseScrollFilter
?
if (event.orientation == MouseScrollOrientation.Vertical && canZoom) {
...
true
} else {
false
}
Aaron Yoder
10/02/2021, 10:55 AM