| 948 | } |
| 949 | |
| 950 | lua::ImguiHandle Window::AddMainMenu() |
| 951 | { |
| 952 | if (!MainMenu) { |
| 953 | MainMenu = AddChild<MenuBar>(); |
| 954 | Flags |= GuiWindowFlags::MenuBar; |
| 955 | } |
| 956 | |
| 957 | return MainMenu; |
| 958 | } |
| 959 | |
| 960 | bool MenuBar::BeginRender(DrawingContext& context) |
| 961 | { |
nothing calls this directly
no outgoing calls
no test coverage detected