Don't set the width and height of the view in the constructor,
otherwise some other calculation screws up later, and the menu frame ends up to be offsetted by its height. Fixes ticket #6159. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37149 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -229,7 +229,7 @@ BMenu::BMenu(const char* name, menu_layout layout)
|
||||
|
||||
BMenu::BMenu(const char* name, float width, float height)
|
||||
:
|
||||
BView(BRect(0.0f, width, 0.0f, height), name, 0, B_WILL_DRAW),
|
||||
BView(BRect(0.0f, 0.0f, 0.0f, 0.0f), name, 0, B_WILL_DRAW),
|
||||
fChosenItem(NULL),
|
||||
fSelected(NULL),
|
||||
fCachedMenuWindow(NULL),
|
||||
|
||||
Reference in New Issue
Block a user