1
1

display: ensure smooth scrolling when the edit window is resized

When the editing space gets narrower, either by toggling line numbers on
or making nano's window smaller, and when the cursor is near the bottom,
it can be pushed offscreen.  In that case, don't get it back onscreen by
centering the current line but by putting it on the bottom row.  This
makes for a smoother experience.

This fixes http://savannah.gnu.org/bugs/?50933.
Этот коммит содержится в:
David Lawrence Ramsey 2017-05-03 17:10:46 -05:00 коммит произвёл Benno Schulenberg
родитель 492166a3f7
Коммит 2b38547875

Просмотреть файл

@ -2959,6 +2959,9 @@ void ensure_firstcolumn_is_aligned(void)
#ifndef NANO_TINY
if (openfile->firstcolumn % editwincols != 0)
openfile->firstcolumn -= (openfile->firstcolumn % editwincols);
/* If smooth scrolling is on, make sure the viewport doesn't center. */
focusing = FALSE;
#endif
}