Round ScrollDelta::Lines in TextEditor

This commit is contained in:
Héctor Ramón Jiménez 2023-09-21 06:07:19 +02:00
parent 25d47c3238
commit da5dd2526a
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -545,7 +545,7 @@ impl Update {
action(Action::Scroll {
lines: match delta {
mouse::ScrollDelta::Lines { y, .. } => {
-y as i32 * 4
-y.round() as i32 * 4
}
mouse::ScrollDelta::Pixels { y, .. } => {
-y.signum() as i32