summaryrefslogtreecommitdiff
path: root/schist_desktop_gui/src/gui/components/table
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-02-12 19:11:22 +0000
committerJoe Carstairs <me@joeac.net>2026-02-12 19:11:22 +0000
commitb3f91aef7c9673c180690f6e22984d50e0dbeecf (patch)
treef8bf1769e7fdcc169f4cc87f08354c4e5fc3fd33 /schist_desktop_gui/src/gui/components/table
parent3c8a428c195da414171bd6e9064f26c4a66ffe61 (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.rs2
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 {