From 530f9e3c5395c559e66f7b9df30552950369e42b Mon Sep 17 00:00:00 2001 From: Brandon Dong Date: Mon, 10 Oct 2022 10:12:48 -0700 Subject: [PATCH] Fix goto/view center mismatch (#4135) --- helix-view/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index 788304bc..0145677d 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -53,12 +53,12 @@ pub fn align_view(doc: &Document, view: &mut View, align: Align) { .cursor(doc.text().slice(..)); let line = doc.text().char_to_line(pos); - let height = view.inner_area().height as usize; + let last_line_height = view.inner_area().height.saturating_sub(1) as usize; let relative = match align { - Align::Center => height / 2, + Align::Center => last_line_height / 2, Align::Top => 0, - Align::Bottom => height, + Align::Bottom => last_line_height, }; view.offset.row = line.saturating_sub(relative);