From 1d7f698669f863250f310717ab7c81173a85fb3f Mon Sep 17 00:00:00 2001 From: wayne Date: Mon, 4 Apr 2022 03:16:24 +0000 Subject: [PATCH] Update egui_extras/src/table.rs Co-authored-by: Emil Ernerfeldt --- egui_extras/src/table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egui_extras/src/table.rs b/egui_extras/src/table.rs index 51068428..039e31e6 100644 --- a/egui_extras/src/table.rs +++ b/egui_extras/src/table.rs @@ -472,7 +472,7 @@ impl<'a> TableBody<'a> { height_below_visible += height as f64 } - // if height bloew visible is > 0 here then we need to add a buffer to allow the table to + // if height below visible is > 0 here then we need to add a buffer to allow the table to // accurately calculate the "virtual" scrollbar position if height_below_visible > 0.0 { self.add_buffer(height_below_visible as f32);