From de281cf4d78feba8d046960702eccacb9bd9bde2 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 11 Nov 2007 20:34:57 +0100 Subject: [PATCH] Enable trackpad scrolling over the black area in full-screen --- src/MacVim/MMFullscreenWindow.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/MacVim/MMFullscreenWindow.m b/src/MacVim/MMFullscreenWindow.m index 360ff3b9..df2febdb 100644 --- a/src/MacVim/MMFullscreenWindow.m +++ b/src/MacVim/MMFullscreenWindow.m @@ -195,6 +195,11 @@ #pragma mark Proxy/Decorator/whatever stuff +- (void)scrollWheel:(NSEvent *)theEvent +{ + [[view textView] scrollWheel:theEvent]; +} + // the window controller will send us messages that are meant for the original, // non-fullscreen window. forward those, and interpret the messages that are // interesting for us -- 2.11.4.GIT