HumbleUI/JWM

X11: When scrolling horizontally, primary mouse button events are constantly generated

tonsky opened this issue · 1 comments

Screenshot from 2022-02-16 22-35-04

Logitech MX Master 3 + side wheel + Ubuntu 20.04

I think

bool jwm::MouseButtonX11::isButton(uint32_t v) {
return v!=4 && v!=5; // mouse wheel buttons
}

should be extended to v<4 || v>7 - see this (happened to come across that while investigating #214)