mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Use unicode_width to correctly truncate picker chars
This commit is contained in:
parent
c688288881
commit
e8d2f3612f
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ impl Buffer {
|
||||||
index += width;
|
index += width;
|
||||||
x_offset += width;
|
x_offset += width;
|
||||||
}
|
}
|
||||||
if ellipsis && x_offset - (x as usize) < string.as_ref().chars().count() {
|
if ellipsis && x_offset - (x as usize) < UnicodeWidthStr::width(string.as_ref()) {
|
||||||
self.content[index].set_symbol("…");
|
self.content[index].set_symbol("…");
|
||||||
}
|
}
|
||||||
(x_offset as u16, y)
|
(x_offset as u16, y)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue