Skip to content

Commit

Permalink
adjust scroll speed on analog sticks
Browse files Browse the repository at this point in the history
  • Loading branch information
galister committed Jun 3, 2024
1 parent 84b08b9 commit 0096267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/overlays/screen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ impl InteractionHandler for ScreenInteractionHandler {
if self.next_scroll > Instant::now() {
return;
}
let max_millis = if matches!(hit.mode, PointerMode::Right) {
50.0
let max_millis = if matches!(hit.mode, PointerMode::Left) {
200.0
} else {
100.0
};
Expand Down

0 comments on commit 0096267

Please sign in to comment.