backends/native: Fix clutter button number assignment to pointer evcodes
Commit947c636275
meant to swap BTN_STYLUS* buttons, not BTN_MIDDLE/RIGHT as used by pointing devices. This was also missed during review. Fixes:947c636275
("backends/native: Swap BTN_STYLUS and BTN_STYLUS2") Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3550>
This commit is contained in:
parent
a26d08d3bc
commit
3528b54378
@ -822,12 +822,12 @@ meta_seat_impl_notify_button_in_impl (MetaSeatImpl *seat_impl,
|
||||
button_nr = CLUTTER_BUTTON_PRIMARY;
|
||||
break;
|
||||
|
||||
case BTN_RIGHT:
|
||||
case BTN_MIDDLE:
|
||||
case BTN_STYLUS:
|
||||
button_nr = CLUTTER_BUTTON_MIDDLE;
|
||||
break;
|
||||
|
||||
case BTN_MIDDLE:
|
||||
case BTN_RIGHT:
|
||||
case BTN_STYLUS2:
|
||||
button_nr = CLUTTER_BUTTON_SECONDARY;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user