Stop scrollbar crash. Cocoa. NPOB.

This commit is contained in:
hyatt%netscape.com 2002-04-20 01:30:20 +00:00
Родитель d1729df1cf
Коммит 185bf8bd33
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -405,5 +405,18 @@ nsScrollbar::IsEnabled(PRBool *aState)
[super mouseDown:theEvent];
}
//
// -mouseMoved
//
// our parent view will try to forward this message down to us. The
// default behavior for NSResponder is to forward it up the chain. Can you
// say "infinite recursion"? I thought so. Just stub out the action to
// break the cycle of madness.
//
- (void)mouseMoved:(NSEvent*)theEvent
{
// do nothing
}
@end