ImGui.BeginMenuBar() not displaying
Rage997 opened this issue · 1 comments
Rage997 commented
Hello guys,
I am trying to create a menubar on top of a window but no menu is displayed. I followed the example code in the Docs
ImGui.Begin("Debug");
if ( ImGui.BeginMenuBar()) {
if ( ImGui.BeginMenu("FIle")) {
if (ImGui.Menuitem("Open..", "Ctrl+O")) { /* Do stuff */ }
if (ImGui.Menuitem("Save", "Ctrl+S")) { /* Do stuff */ }
if (ImGui.Menuitem("Close", "Ctrl+W")) { /* Do stuff */ }
ImGui.EndMenu();
}
ImGui.EndMenuBar();
}
ImGui.End();
any help would be appreciated!
Rage997 commented
In case anyone else has this problem, all you have to do is to feed the correct flag ImGui.Begin("Debug", null, ImGui.WindowFlags.MenuBar);
Wished this was written explicitly in the docs