since we depend on FrameResized() to be called, we should make sure that our flags contain B_FRAME_EVENTS.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12687 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2005-05-16 15:01:47 +00:00
parent 5f50ffd65c
commit 67f6c84d16
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
//------------------------------------------------------------------------------
BBox::BBox(BRect frame, const char *name, uint32 resizingMode, uint32 flags,
border_style border)
: BView(frame, name, resizingMode, flags),
: BView(frame, name, resizingMode, flags | B_FRAME_EVENTS),
fStyle(border)
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));