0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.1-191

This commit is contained in:
Bram Moolenaar 2008-01-03 15:15:07 +00:00
parent a045324992
commit 6784078701
2 changed files with 6 additions and 2 deletions

View File

@ -3734,8 +3734,10 @@ gui_drag_scrollbar(sb, value, still_dragging)
sb->value = value;
#ifdef USE_ON_FLY_SCROLL
/* When not allowed to do the scrolling right now, return. */
if (dont_scroll || input_available())
/* When not allowed to do the scrolling right now, return.
* This also checked input_available(), but that causes the first click in
* a scrollbar to be ignored when Vim doesn't have focus. */
if (dont_scroll)
return;
#endif
#ifdef FEAT_INS_EXPAND

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
191,
/**/
190,
/**/