remove redudant/incorrect view bound check

pull/6417/head
Pascal Kuthe 10 months ago
parent 6d051d7084
commit 7e133167ca
No known key found for this signature in database
GPG Key ID: D715E8655AE166A6

@ -393,11 +393,6 @@ impl View {
text: RopeSlice,
pos: usize,
) -> Option<Position> {
if pos < self.offset.anchor {
// Line is not visible on screen
return None;
}
let viewport = self.inner_area(doc);
let text_fmt = doc.text_format(viewport.width, None);
let annotations = self.text_annotations(doc, None);

Loading…
Cancel
Save