From c937ea59e3b86c0ad6139971dde0ce7788e2e0a9 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 b72ddb35..8cb349ae 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 -- 2.11.4.GIT