1
0
forked from aniani/vim

updated for version 7.3.833

Problem:    In the terminal the scroll wheel always scrolls the active window.
Solution:   Scroll the window under the mouse pointer, like in the GUI.
            (Bradie Rao)
This commit is contained in:
Bram Moolenaar
2013-02-26 13:30:32 +01:00
parent 5c9626301b
commit 40cf4b44ed
3 changed files with 8 additions and 8 deletions

View File

@@ -9139,9 +9139,8 @@ ins_mousescroll(dir)
tpos = curwin->w_cursor;
# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
/* Currently the mouse coordinates are only known in the GUI. */
if (gui.in_use && mouse_row >= 0 && mouse_col >= 0)
# ifdef FEAT_WINDOWS
if (mouse_row >= 0 && mouse_col >= 0)
{
int row, col;
@@ -9191,7 +9190,7 @@ ins_mousescroll(dir)
# endif
}
# if defined(FEAT_GUI) && defined(FEAT_WINDOWS)
# ifdef FEAT_WINDOWS
curwin->w_redr_status = TRUE;
curwin = old_curwin;