diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-11-23 11:27:27 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-11-23 15:09:16 +0300 |
| commit | 9c7e8d04d27d2f914ad3e9a54c64b64c34aea4d4 (patch) | |
| tree | 6e22bcba2ea3887525adf68a225f6e2973be26d6 /src/input | |
| parent | 1e6b8906e0a04d92778e5a77d97353f768635274 (diff) | |
| download | niri-9c7e8d04d27d2f914ad3e9a54c64b64c34aea4d4.tar.gz niri-9c7e8d04d27d2f914ad3e9a54c64b64c34aea4d4.tar.bz2 niri-9c7e8d04d27d2f914ad3e9a54c64b64c34aea4d4.zip | |
Extract Niri::advance_animations()
Diffstat (limited to 'src/input')
| -rw-r--r-- | src/input/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
