Problem
On an MX Master 3S, customizing thumbwheel sensitivity or rotation bindings diverts the wheel through HID++ 0x2150. Setting both rotation directions to Do Nothing suppresses scrolling, but rolling and releasing the wheel can still trigger App Exposé.
Reproduction
- Select an MX Master 3S.
- Set thumbwheel sensitivity away from the default, or customize either rotation direction.
- Set Thumb Wheel Up and Thumb Wheel Down to Do Nothing.
- Roll the thumbwheel and release it.
Expected
Rotation is suppressed and no unrelated action fires.
Actual
App Exposé can fire because the wheel reports a capacitive single-tap event separately from rotation.
Root cause
ButtonId::Thumbwheel represents the capacitive tap and defaults to AppExpose.
- The mouse model replaces the thumbwheel hotspot with Up/Down controls, so the tap binding is hidden and cannot be changed in the GUI.
- The HID capture path receives tap and rotation independently, but the hidden tap action still dispatches.
- Rotation diversion is incorrectly gated on the device advertising single-tap capability, preventing customized rotation on devices without tap support.
Proposed fix
- Default thumbwheel tap to Do Nothing.
- Expose Up, Tap, and Down as separate non-overlapping GUI controls.
- Preserve explicit existing tap mappings.
- Divert rotation whenever thumbwheel capture is requested; use single-tap capability only to gate tap dispatch.
- Add core, projection, HID decode, capture-arming, geometry, and localization tests.
Problem
On an MX Master 3S, customizing thumbwheel sensitivity or rotation bindings diverts the wheel through HID++
0x2150. Setting both rotation directions to Do Nothing suppresses scrolling, but rolling and releasing the wheel can still trigger App Exposé.Reproduction
Expected
Rotation is suppressed and no unrelated action fires.
Actual
App Exposé can fire because the wheel reports a capacitive single-tap event separately from rotation.
Root cause
ButtonId::Thumbwheelrepresents the capacitive tap and defaults toAppExpose.Proposed fix