Fix delay when changing scrolling direction (#13867)

Fixes: #13720.

Co-authored-by: Antonio Scandurra <antonio@zed.dev>
This commit is contained in:
Peter Tripp 2024-07-05 11:11:43 -04:00 committed by GitHub
parent fa602001e3
commit 821aa0811d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 43 additions and 4 deletions

View file

@ -2320,6 +2320,18 @@ impl Pixels {
Self(self.0.abs())
}
/// Returns the sign of the `Pixels` value.
///
/// # Returns
///
/// Returns:
/// * `1.0` if the value is positive
/// * `-1.0` if the value is negative
/// * `0.0` if the value is zero
pub fn signum(&self) -> f32 {
self.0.signum()
}
/// Returns the f64 value of `Pixels`.
///
/// # Returns