From 9c7e8d04d27d2f914ad3e9a54c64b64c34aea4d4 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 23 Nov 2024 11:27:27 +0300 Subject: Extract Niri::advance_animations() --- src/input/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/input') diff --git a/src/input/mod.rs b/src/input/mod.rs index 864bfe7f..976f51db 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -87,7 +87,7 @@ impl State { // doesn't always trigger due to damage, etc. So run it here right before it might prove // important. Besides, animations affect the input, so it's best to have up-to-date values // here. - self.niri.layout.advance_animations(get_monotonic_time()); + self.niri.advance_animations(get_monotonic_time()); if self.niri.monitors_active { // Notify the idle-notifier of activity. -- cgit