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 }