Forward mouse wheel changes to the parent view so the scroll view can react to them.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31573 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2009-07-14 23:11:21 +00:00
parent 4890653c13
commit 0543dd88c7

View File

@ -958,6 +958,10 @@ SourceView::TextView::MessageReceived(BMessage* message)
_CopySelectionToClipboard();
break;
case B_MOUSE_WHEEL_CHANGED:
fSourceView->MessageReceived(message);
break;
default:
SourceView::BaseView::MessageReceived(message);
break;