diff --git a/crates/ui/src/table.rs b/crates/ui/src/table.rs index cf215a45..d93ad760 100644 --- a/crates/ui/src/table.rs +++ b/crates/ui/src/table.rs @@ -275,7 +275,7 @@ pub trait TableDelegate: Sized + 'static { /// Render the last empty column, default to empty. fn render_last_empty_col(&mut self, cx: &mut ViewContext>) -> Div { - h_flex().w(px(100.)).h_full().flex_shrink_0() + h_flex().w_5().h_full().flex_shrink_0() } }