diff --git a/src/kits/interface/Menu.cpp b/src/kits/interface/Menu.cpp index 29e2e30658..a0a57a7ce4 100644 --- a/src/kits/interface/Menu.cpp +++ b/src/kits/interface/Menu.cpp @@ -2751,9 +2751,6 @@ BMenu::_UpdateWindowViewSize(const bool &move) bool BMenu::_AddDynamicItems() { - if (fDynamicItemsAdded) - return false; - bool attachAborted = false; BMenuItem* superItem = Superitem(); BMenu* superMenu = Supermenu(); @@ -2768,9 +2765,6 @@ BMenu::_AddDynamicItems() } while (AddDynamicItem(B_PROCESSING)); } - if (!attachAborted) - fDynamicItemsAdded = true; - return attachAborted; }