Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix goto/view center mismatch #4135

Merged
merged 1 commit into from
Oct 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions helix-view/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down