diff --git a/src/window.cc b/src/window.cc index 24a02cff7..5396f6629 100644 --- a/src/window.cc +++ b/src/window.cc @@ -133,7 +133,7 @@ static LineCount adapt_view_pos(LineCount line, LineCount offset, if (line - offset < view_pos) return std::max(0_line, line - offset); else if (line + offset >= view_pos + view_size) - return std::max(0_line, line + offset - view_size); + return std::max(0_line, line + offset - view_size + 1); return view_pos; }