PixlOne/logiops

MX Anywhere 3 scroll wheel very slow sensitive

JasonEleventeen opened this issue · 3 comments

Vertical wheel is not sensitive enough and scrolls very slow

    {
        hires: false;
        invert: false;
        target: true;

        up: {
            mode: "Axis";
            axis: "REL_WHEEL_HI_RES";
            axis_multiplier: 5.0;
        },
        down: {
            mode: "Axis";
            axis: "REL_WHEEL_HI_RES";
            axis_multiplier: -5.0;
        },
    }; 

Dug out the dongle, appears to only be an issue in bluetooth mode

In addiction to logid I have installed Solaar and this problem has been solved by applying the rotation speed in Solaar. It has kept all the shortcuts that I had been configured with logid

I think you need to use REL_WHEEL and not REL_WHEEL_HI_RES, but I'm unsure.


EDIT: found this comment and just went with that - it seems to scroll much better now, but I might re-realise why I had disabled hires in the past.

Guess I upgraded this package last week because now my Anywhere 3 also scrolls super slowly. It used to work just fine 😢 I'm on bluetooth and don't really want to get off it.

The following helps but mousewheel still seems quite laggy:

hiresscroll: {
    hires: false;
    invert: false;
    target: true;
    up: {
        mode: "Axis";
        axis: "REL_WHEEL";
        axis_multiplier: 1.0;
    },
    down: {
        mode: "Axis";
        axis: "REL_WHEEL";
        axis_multiplier: -1.0;
    }
  };