1
1
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3060 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
David Lawrence Ramsey 2005-10-28 17:12:58 +00:00
родитель a0aff67a4d
Коммит f726053325

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

@ -1561,8 +1561,10 @@ bool get_mouseinput(int *mouse_x, int *mouse_y, bool allow_shortcuts)
i = COLS / ((currslen / 2) + (currslen % 2)); i = COLS / ((currslen / 2) + (currslen % 2));
/* Calculate the y-coordinate relative to the beginning of /* Calculate the y-coordinate relative to the beginning of
* the shortcut list in bottomwin. */ * the shortcut list in bottomwin, i.e, with the sizes of
j = *mouse_y - ((2 - no_more_space()) + 1) - editwinrows; * topwin, edit, and the first line of bottomwin subtracted
* out. */
j = *mouse_y - (2 - no_more_space()) - editwinrows - 1;
/* If we're on the statusbar, beyond the end of the shortcut /* If we're on the statusbar, beyond the end of the shortcut
* list, or beyond the end of a shortcut on the right side of * list, or beyond the end of a shortcut on the right side of