Adjust scroll speeds

This commit is contained in:
Jeremy Soller 2025-09-07 19:57:47 -06:00
parent 1e2424861d
commit 038d770200

View file

@ -1213,8 +1213,8 @@ where
let metrics = editor.with_buffer(|buffer| buffer.metrics());
-y * metrics.line_height
}
ScrollDelta::Pixels { x: _, y } => y,
};
ScrollDelta::Pixels { x: _, y } => -y,
} * 4.0;
editor.action(Action::Scroll { pixels });
status = Status::Captured;
}