From 67f6c84d16ad1a1c15e7de63536ebf2dd5410579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 16 May 2005 15:01:47 +0000 Subject: [PATCH] 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 --- src/kits/interface/Box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/interface/Box.cpp b/src/kits/interface/Box.cpp index 7163d25464..51e4aadd08 100644 --- a/src/kits/interface/Box.cpp +++ b/src/kits/interface/Box.cpp @@ -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));