Do UTF8-aware truncation on long item names in editor item

This commit is contained in:
Mikayla Maki 2023-03-18 15:44:23 -07:00
parent fc828971f1
commit 436c59d8ef

View file

@ -538,11 +538,7 @@ impl Item for Editor {
let description = path.to_string_lossy();
Some(
Label::new(
if description.len() > MAX_TAB_TITLE_LEN {
description[..MAX_TAB_TITLE_LEN].to_string() + ""
} else {
description.into()
},
util::truncate_and_trailoff(&description, MAX_TAB_TITLE_LEN),
style.description.text.clone(),
)
.contained()