diff --git a/src/kits/interface/Menu.cpp b/src/kits/interface/Menu.cpp index 13a05fc2a2..06c32c32e1 100644 --- a/src/kits/interface/Menu.cpp +++ b/src/kits/interface/Menu.cpp @@ -2119,12 +2119,11 @@ BMenu::UpdateWindowViewSize(bool upWind) // If we need scrolling, resize the window to fit the screen and // attach scrollers to our cached MenuWindow. if (dynamic_cast(Supermenu()) == NULL) { - window->ResizeTo(Bounds().Width() + 2, screen.Frame().bottom - 10); + window->ResizeTo(Bounds().Width() + 2, screen.Frame().bottom); frame.top = 0; - } - else { - // Or, in case our parent was a BMenuBar enable scrolling with - // normal size. + } else { + // Or, in case our parent was a BMenuBar enable scrolling with + // normal size. window->ResizeTo(Bounds().Width() + 2, screen.Frame().bottom - frame.top); }