From 23d42d2827a68468bc520440c6396eb114d793bc Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 28 Jan 2025 03:04:31 +0100 Subject: Rename `Animation::in_progress` to `is_animating` --- core/src/animation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/animation.rs') diff --git a/core/src/animation.rs b/core/src/animation.rs index 29dacd4d..5ff31544 100644 --- a/core/src/animation.rs +++ b/core/src/animation.rs @@ -81,7 +81,7 @@ where /// Returns true if the [`Animation`] is currently in progress. /// /// An [`Animation`] is in progress when it is transitioning to a different state. - pub fn in_progress(&self, at: Instant) -> bool { + pub fn is_animating(&self, at: Instant) -> bool { self.raw.in_progress(at) } -- cgit