comparison src/gui.c @ 1476:ea1a2950ed16 v7.1.191

updated for version 7.1-191
author vimboss
date Thu, 03 Jan 2008 15:15:07 +0000
parents 40aa7ae37901
children cc4fe241baa3
comparison
equal deleted inserted replaced
1475:c87ce0b2ee2a 1476:ea1a2950ed16
3732 #endif 3732 #endif
3733 3733
3734 sb->value = value; 3734 sb->value = value;
3735 3735
3736 #ifdef USE_ON_FLY_SCROLL 3736 #ifdef USE_ON_FLY_SCROLL
3737 /* When not allowed to do the scrolling right now, return. */ 3737 /* When not allowed to do the scrolling right now, return.
3738 if (dont_scroll || input_available()) 3738 * This also checked input_available(), but that causes the first click in
3739 * a scrollbar to be ignored when Vim doesn't have focus. */
3740 if (dont_scroll)
3739 return; 3741 return;
3740 #endif 3742 #endif
3741 #ifdef FEAT_INS_EXPAND 3743 #ifdef FEAT_INS_EXPAND
3742 /* Disallow scrolling the current window when the completion popup menu is 3744 /* Disallow scrolling the current window when the completion popup menu is
3743 * visible. */ 3745 * visible. */