PixlOne / logiops

An unofficial userspace driver for HID++ Logitech devices
GNU General Public License v3.0
3.38k stars 269 forks source link

MXMaster3 thumberwheel OnInterval Mode doesn't work #393

Closed nigel7huyc closed 1 year ago

nigel7huyc commented 1 year ago

Hi there, I configure my MX Master3 thumberwheel under the mode of OnInterval. The details of configure has shown below

thumbwheel:
    {
        divert: true;
        invert: false;
        left =
        {
            direction: "Left";
            mode: "OnInterval";
            threshold: 100;
            interval: 1;
            action =
            {
                type: "Keypress";
                keys: ["KEY_LEFTCTRL", "KEY_TAB"];
            };
        }
        right =
        {
            direction: "Right";
            mode: "OnInterval";
            threshold: 100;
            interval: 1;
            action =
            {
                type: "Keypress";
                keys: ["KEY_LEFTCTRL", "KEY_LEFTSHIFT","KEY_TAB"];
            };
        }
    };

Unfortunately, it doesn't work. Then, I try to the axis mode to scroll the axis, the configure is work. It proves the thumbwheel of mouse is fine. Is there anyone can help me to correct the above configuration to archive that switching the tab in the browser with above configuration. Thanks a lot.