diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2022-07-15 13:26:54 +0300 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-07-15 14:14:41 -0400 |
commit | 6b97c4fa710975586a701a9491fe461499a4b6dc (patch) | |
tree | a408b704ddbbf846c8e9fd1d38cb54c0f7f47535 /sway | |
parent | 8d8a21c9c321fa41b033caf9b5b62cdd584483c1 (diff) |
input: chase delta_discrete semantics change
Diffstat (limited to 'sway')
-rw-r--r-- | sway/input/seatop_default.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c index 2684e55a..875426bf 100644 --- a/sway/input/seatop_default.c +++ b/sway/input/seatop_default.c @@ -715,7 +715,7 @@ static void handle_pointer_axis(struct sway_seat *seat, seat_get_active_tiling_child(seat, tabcontainer); list_t *siblings = container_get_siblings(cont); int desired = list_find(siblings, active->sway_container) + - round(scroll_factor * event->delta_discrete); + round(scroll_factor * event->delta_discrete / WLR_POINTER_AXIS_DISCRETE_STEP); if (desired < 0) { desired = 0; } else if (desired >= siblings->length) { |