We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1521020 commit 07cc03dCopy full SHA for 07cc03d
src/array_table.rs
@@ -636,12 +636,12 @@ impl<'array> ArrayTable<'array> {
636
table = table.column(Column::initial(40.0).clip(true).resizable(true));
637
continue;
638
}
639
- table = table.column(Column::initial(10.0).clip(true).resizable(true));
640
- // table = table.column(
641
- // Column::initial((columns[i].name.len() + 3).max(10) as f32 * text_width)
642
- // .clip(true)
643
- // .resizable(true),
644
- // );
+ // table = table.column(Column::initial(10.0).clip(true).resizable(true));
+ table = table.column(
+ Column::initial((columns[i].name.len() + 3).max(10) as f32 * text_width)
+ .clip(true)
+ .resizable(true),
+ );
645
646
647
0 commit comments