From 3306ace54ed6ab2be7e85601a619d54c3e28274b 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 360ff3b994..df2febdb15 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