diff options
| author | Joe Carstairs <me@joeac.net> | 2026-02-12 19:11:22 +0000 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-02-12 19:11:22 +0000 |
| commit | b3f91aef7c9673c180690f6e22984d50e0dbeecf (patch) | |
| tree | f8bf1769e7fdcc169f4cc87f08354c4e5fc3fd33 /schist_desktop_gui/src/gui/components/table | |
| parent | 3c8a428c195da414171bd6e9064f26c4a66ffe61 (diff) | |
task-085: clips overflowing table cells
Diffstat (limited to 'schist_desktop_gui/src/gui/components/table')
| -rw-r--r-- | schist_desktop_gui/src/gui/components/table/view_table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schist_desktop_gui/src/gui/components/table/view_table.rs b/schist_desktop_gui/src/gui/components/table/view_table.rs index 725c5ff..f082b83 100644 --- a/schist_desktop_gui/src/gui/components/table/view_table.rs +++ b/schist_desktop_gui/src/gui/components/table/view_table.rs @@ -48,7 +48,7 @@ where } fn format_string(text: &String) -> Text { - Text::default(text).weak().small() + Text::default(text).weak().small().clip() } fn format_currency(amount: i32) -> Text { |
