From 5679de60c567fc62c091004ee80a738757e6d3b6 Mon Sep 17 00:00:00 2001 From: ocornut Date: Tue, 18 Mar 2025 17:35:43 +0100 Subject: [PATCH] Error Handling: added better report and recovery for extraneous EndPopup() call. (#1651, #8499) --- docs/CHANGELOG.txt | 12 ++++++++++++ imgui.cpp | 7 +++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index db1fb0cea..17327ee24 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -35,6 +35,18 @@ HOW TO UPDATE? and API updates have been a little more frequent lately. They are documented below and in imgui.cpp and should not affect all users. - Please report any issue! +----------------------------------------------------------------------- + VERSION 1.92.0 WIP (In Progress) +----------------------------------------------------------------------- + +Breaking changes: + +Other changes: + +- Error Handling: added better error report and recovery for extraneous + EndPopup() call. (#1651, #8499) + + ----------------------------------------------------------------------- VERSION 1.91.9b (Released 2025-03-17) ----------------------------------------------------------------------- diff --git a/imgui.cpp b/imgui.cpp index 7ec192278..3b9d25e54 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -11818,8 +11818,11 @@ void ImGui::EndPopup() { ImGuiContext& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; - IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginPopup()/EndPopup() calls - IM_ASSERT(g.BeginPopupStack.Size > 0); + if ((window->Flags & ImGuiWindowFlags_Popup) == 0 || g.BeginPopupStack.Size == 0) + { + IM_ASSERT_USER_ERROR(0, "Calling EndPopup() too many times or in wrong window!"); + return; + } // Make all menus and popups wrap around for now, may need to expose that policy (e.g. focus scope could include wrap/loop policy flags used by new move requests) if (g.NavWindow == window)