You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MouseWheel Scroll speed is very slow (tiny increments). What would be the best approach to increase it? OR could you implement a property like 'arrows' to set it.?
The text was updated successfully, but these errors were encountered:
I just recently encountered this problem and I solved it by adding a line of code to the onMouseWheel function that multiplies delta by the scrollStep property to increase the mouse wheel speed:
onMouseWheel: function(ev, delta){
delta *= this.opts.scrollStep; //added line here
this.handle.top -= delta;
The MouseWheel Scroll speed is very slow (tiny increments). What would be the best approach to increase it? OR could you implement a property like 'arrows' to set it.?
The text was updated successfully, but these errors were encountered: