@@ -8657,6 +8657,10 @@ void ImGui::EndMenuBar()
8657
8657
return;
8658
8658
ImGuiContext& g = *GImGui;
8659
8659
8660
+ IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'"
8661
+ IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar);
8662
+ IM_ASSERT(window->DC.MenuBarAppending);
8663
+
8660
8664
// Nav: When a move request within one of our child menu failed, capture the request to navigate among our siblings.
8661
8665
if (NavMoveRequestButNoResultYet() && (g.NavMoveDir == ImGuiDir_Left || g.NavMoveDir == ImGuiDir_Right) && (g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu))
8662
8666
{
@@ -8683,9 +8687,6 @@ void ImGui::EndMenuBar()
8683
8687
}
8684
8688
}
8685
8689
8686
- IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'"
8687
- IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar);
8688
- IM_ASSERT(window->DC.MenuBarAppending);
8689
8690
PopClipRect();
8690
8691
PopID();
8691
8692
window->DC.MenuBarOffset.x = window->DC.CursorPos.x - window->Pos.x; // Save horizontal position so next append can reuse it. This is kinda equivalent to a per-layer CursorPos.
@@ -8764,11 +8765,11 @@ bool ImGui::BeginMainMenuBar()
8764
8765
8765
8766
void ImGui::EndMainMenuBar()
8766
8767
{
8768
+ ImGuiContext& g = *GImGui;
8767
8769
EndMenuBar();
8768
8770
8769
8771
// When the user has left the menu layer (typically: closed menus through activation of an item), we restore focus to the previous window
8770
8772
// FIXME: With this strategy we won't be able to restore a NULL focus.
8771
- ImGuiContext& g = *GImGui;
8772
8773
if (g.CurrentWindow == g.NavWindow && g.NavLayer == ImGuiNavLayer_Main && !g.NavAnyRequest && g.ActiveId == 0)
8773
8774
FocusTopMostWindowUnderOne(g.NavWindow, NULL, NULL, ImGuiFocusRequestFlags_UnlessBelowModal | ImGuiFocusRequestFlags_RestoreFocusedChild);
8774
8775
0 commit comments