Scroll wheel message sent to scrollers are passed on to text view.

git-svn-id: http://macvim.googlecode.com/svn/trunk@160 96c4425d-ca35-0410-94e5-3396d5c13a8f
This commit is contained in:
Bjorn Winckler
2007-08-18 16:54:01 +00:00
parent e33692a5ee
commit 2e2ee9fa7e
+7
View File
@@ -1258,4 +1258,11 @@ NSMutableArray *buildMenuAddress(NSMenu *menu)
range = newRange;
}
- (void)scrollWheel:(NSEvent *)event
{
// HACK! Pass message on to the text view.
MMWindowController *wc = [[self window] windowController];
[[wc textView] scrollWheel:event];
}
@end // MMScroller