From 6a4267090f5ccc256ee6b0a8f666fec961dfc6ae Mon Sep 17 00:00:00 2001 From: Ethan Post <16603401+ecpost@users.noreply.github.com> Date: Wed, 25 Sep 2024 08:15:11 -0700 Subject: [PATCH] Update crates/egui_extras/src/table.rs Change method name to more explicit `animate_scrolling` Co-authored-by: Emil Ernerfeldt --- crates/egui_extras/src/table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui_extras/src/table.rs b/crates/egui_extras/src/table.rs index 14650e25c39..7f9c81109fa 100644 --- a/crates/egui_extras/src/table.rs +++ b/crates/egui_extras/src/table.rs @@ -415,7 +415,7 @@ impl<'a> TableBuilder<'a> { /// /// Default: `true`. #[inline] - pub fn animated(mut self, animated: bool) -> Self { + pub fn animate_scrolling(mut self, animated: bool) -> Self { self.scroll_options.animated = animated; self }