Added Flush() to SetMouseEventMask(); this should definitely be sent immediately.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22930 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-11-15 15:06:51 +00:00
parent 13508e8bd0
commit 8d2fdf2b0e

View File

@ -1626,6 +1626,7 @@ BView::SetMouseEventMask(uint32 mask, uint32 options)
fOwner->fLink->StartMessage(AS_LAYER_SET_MOUSE_EVENT_MASK);
fOwner->fLink->Attach<uint32>(mask);
fOwner->fLink->Attach<uint32>(options);
fOwner->fLink->Flush();
return B_OK;
}