logiops
logiops copied to clipboard
Speed up scroll with "target: false"
hirescroll { target: true; } makes scrolling strange, but axis_multiplier does not work without it. So is there any way to speed up scroll without target: true?
@ExposedCat Yes, you could do it like this:
hiresscroll: {
...
up: {
mode: "Axis";
axis: "REL_WHEEL_HI_RES";
axis_multiplier: 2;
},
down: {
mode: "Axis";
axis: "REL_WHEEL_HI_RES";
axis_multiplier: -2;
},
};
By adjusting axis_multiplier, you can change the scroll speed
@emvaized then i need to enable target: true. Otherwise multiplier will not work. The only way i see for now is IMWheel