From 7dc98e3303cb81243c1a87db2f34e6f29d87442b Mon Sep 17 00:00:00 2001 From: ocornut Date: Mon, 17 Mar 2025 23:19:22 +0100 Subject: [PATCH] WIP - Fonts: Fixed PopFont() recovery. (To squash into "Added PushFontSize(), PopFontSize() api." --- imgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index 36749079f..14dcfd67b 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -5989,9 +5989,9 @@ void ImGui::EndFrame() } // End frame - PopFont(); g.WithinFrameScope = false; g.FrameCountEnded = g.FrameCount; + PopFont(); // Initiate moving window + handle left-click and right-click focus UpdateMouseMovingWindowEndFrame(); @@ -8546,7 +8546,7 @@ static void PushDefaultFont() void ImGui::PopFont() { ImGuiContext& g = *GImGui; - if (g.FontStack.Size <= 0) + if (g.FontStack.Size <= 1 && g.WithinFrameScope) { IM_ASSERT_USER_ERROR(0, "Calling PopFont() too many times!"); return;