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:
parent
a045324992
commit
6784078701
@ -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
|
||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
191,
|
||||
/**/
|
||||
190,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user