Return the line length when x is past the last glyph

Co-Authored-By: Julia <julia@zed.dev>
This commit is contained in:
Antonio Scandurra
2023-11-14 17:06:18 +01:00
co-authored by Julia
parent d855e91e43
commit 0b8ec5372b
+3 -2
View File
@@ -54,9 +54,9 @@ impl LineLayout {
pub fn closest_index_for_x(&self, x: Pixels) -> usize {
let mut prev_index = 0;
let mut prev_x = px(0.);
for run in self.runs.iter() {
for glyph in run.glyphs.iter() {
glyph.index;
if glyph.position.x >= x {
if glyph.position.x - x < x - prev_x {
return glyph.index;
@@ -68,7 +68,8 @@ impl LineLayout {
prev_x = glyph.position.x;
}
}
prev_index + 1
self.len
}
pub fn x_for_index(&self, index: usize) -> Pixels {