logiops icon indicating copy to clipboard operation
logiops copied to clipboard

Speed up scroll with "target: false"

Open ExposedCat opened this issue 3 years ago • 2 comments

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 avatar May 16 '21 16:05 ExposedCat

@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 avatar Jun 23 '21 04:06 emvaized

@emvaized then i need to enable target: true. Otherwise multiplier will not work. The only way i see for now is IMWheel

ExposedCat avatar Jun 23 '21 06:06 ExposedCat