Skip to content

Commit fa178f4

Browse files
committed
Error Handling: Recovery from missing EndMenuBar() call. (ocornut#1651)
1 parent c0308da commit fa178f4

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

docs/CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ Other changes:
7171
scrollbar when using thick border sizes. (#8267, #7887)
7272
- Windows: Fixed IsItemXXXX() functions not working on append-version of EndChild(). (#8350)
7373
Also made some of the fields accessible after BeginChild() to match Begin() logic.
74+
- Error Handling: Recovery from missing EndMenuBar() call. (#1651)
7475
- Tables, Menus: Fixed using BeginTable() in menu layer (any menu bar). (#8355)
7576
It previously overrode the current layer back to main layer, which caused an issue
7677
with MainMenuBar attempted to release focus when leaving the menu layer.

imgui.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -10301,6 +10301,11 @@ void ImGui::ErrorRecoveryTryToRecoverWindowState(const ImGuiErrorRecoveryStat
1030110301
IM_ASSERT_USER_ERROR(0, "Missing EndMultiSelect()");
1030210302
EndMultiSelect();
1030310303
}
10304+
if (window->DC.MenuBarAppending) //-V1044
10305+
{
10306+
IM_ASSERT_USER_ERROR(0, "Missing EndMenuBar()");
10307+
EndMenuBar();
10308+
}
1030410309
while (window->DC.TreeDepth > state_in->SizeOfTreeStack) //-V1044
1030510310
{
1030610311
IM_ASSERT_USER_ERROR(0, "Missing TreePop()");

imgui_widgets.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -8657,6 +8657,10 @@ void ImGui::EndMenuBar()
86578657
return;
86588658
ImGuiContext& g = *GImGui;
86598659

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+
86608664
// Nav: When a move request within one of our child menu failed, capture the request to navigate among our siblings.
86618665
if (NavMoveRequestButNoResultYet() && (g.NavMoveDir == ImGuiDir_Left || g.NavMoveDir == ImGuiDir_Right) && (g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu))
86628666
{
@@ -8683,9 +8687,6 @@ void ImGui::EndMenuBar()
86838687
}
86848688
}
86858689

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);
86898690
PopClipRect();
86908691
PopID();
86918692
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()
87648765

87658766
void ImGui::EndMainMenuBar()
87668767
{
8768+
ImGuiContext& g = *GImGui;
87678769
EndMenuBar();
87688770

87698771
// When the user has left the menu layer (typically: closed menus through activation of an item), we restore focus to the previous window
87708772
// FIXME: With this strategy we won't be able to restore a NULL focus.
8771-
ImGuiContext& g = *GImGui;
87728773
if (g.CurrentWindow == g.NavWindow && g.NavLayer == ImGuiNavLayer_Main && !g.NavAnyRequest && g.ActiveId == 0)
87738774
FocusTopMostWindowUnderOne(g.NavWindow, NULL, NULL, ImGuiFocusRequestFlags_UnlessBelowModal | ImGuiFocusRequestFlags_RestoreFocusedChild);
87748775

0 commit comments

Comments
 (0)