PixlOne / logiops

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

Multiple keys not always working #333

Open Olaren15 opened 2 years ago

Olaren15 commented 2 years ago

Hello, I have set my mouse to copy, paste and cut with gestures, however once in a while it will not do the ctrl key and only write 'c' 'v' or 'x' in my text editor. I was wondering if this is known or if there is a fix.

Here is my config

devices: (
    {
        name: "Wireless Mouse MX Master 3";
        hiresscroll:
        {
            hires: true;
            invert: false;
        };
        thumbwheel:
        {
            divert: false
        };
        buttons: (
            {
                cid: 0xc4;
                action:
                {
                    type: "Gestures";
                    gestures: (
                        {
                            direction: "Left";
                            mode: "OnThreshold";
                            treshold: 100;
                            action:
                            {
                                type: "Keypress";
                                keys: ["KEY_LEFTCTRL", "KEY_C"];
                            };
                        },
                        {
                            direction: "Down";
                            mode: "OnThreshold";
                            treshold: 100;
                            action:
                            {
                                type: "Keypress";
                                keys: ["KEY_LEFTCTRL", "KEY_X"];
                            };
                        },
                        {
                            direction: "right";
                            mode: "OnThreshold";
                            treshold: 100;
                            action:
                            {
                                type: "Keypress";
                                keys: ["KEY_LEFTCTRL", "KEY_V"];
                            };
                        },
                    );
                }
            }
        );
    }
)

thanks :)

taimaiduc commented 1 year ago

I have the same issue.