From c9873a0885bf50544bc2b72154dc257c66cb7959 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 12 Aug 2025 22:34:13 +0300 Subject: layout: Remove by-ref animation_snapshot() getter It was used in only one place, and that place was due for an update to use the cached data. --- src/layout/mod.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/layout/mod.rs') diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 5deda707..7bf25b42 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -270,7 +270,6 @@ pub trait LayoutElement { /// Runs periodic clean-up tasks. fn refresh(&self); - fn animation_snapshot(&self) -> Option<&LayoutElementRenderSnapshot>; fn take_animation_snapshot(&mut self) -> Option; fn set_interactive_resize(&mut self, data: Option); -- cgit