Fix scrolling bug

Scrolling now works e.g. after pressing 'f' in normal mode (previously
the scrollbar moved, but the window content did not scroll).
This commit is contained in:
Bjorn Winckler
2008-09-16 22:14:43 +02:00
parent db0d1f51a5
commit bdb7f8efa6
+2 -1
View File
@@ -75,7 +75,8 @@
* On some systems scrolling needs to be done right away instead of in the
* main loop.
*/
#if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(HAVE_GTK2)
#if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(HAVE_GTK2) \
|| defined(FEAT_GUI_MACVIM)
# define USE_ON_FLY_SCROLL
#endif