From bdb7f8efa6f4a5ff72016b682e5955b1030ee02d Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Tue, 16 Sep 2008 22:14:43 +0200 Subject: [PATCH] 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). --- src/gui.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui.h b/src/gui.h index b72ddb35ba..8cb349ae1c 100644 --- a/src/gui.h +++ b/src/gui.h @@ -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