From f423b8ffa2af5134bb4ae4abb2a97c7ff3843d0f Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Tue, 29 Jul 2025 10:03:25 +0800 Subject: [PATCH] table: Fix table head size. (#1099) Close #1098, this issue was included from #1094 --- crates/ui/src/table/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/ui/src/table/mod.rs b/crates/ui/src/table/mod.rs index 74ec06c2..107618b5 100644 --- a/crates/ui/src/table/mod.rs +++ b/crates/ui/src/table/mod.rs @@ -856,8 +856,7 @@ where let name = col_group.column.name.clone(); h_flex() - .size_full() - .overflow_hidden() + .h_full() .child( self.render_cell(col_ix, window, cx) .id(("col-header", col_ix))