Fonts: fix PushFont(NULL) to work as advertised.

Didn't properly finish ca72eb0.
This commit is contained in:
ocornut
2025-06-25 15:55:25 +02:00
parent dcf14505e2
commit 5bc70c68e2

View File

@@ -8906,8 +8906,8 @@ void ImGui::SetFontRasterizerDensity(float rasterizer_density)
void ImGui::PushFont(ImFont* font, float font_size_base)
{
ImGuiContext& g = *GImGui;
//if (font == NULL) // Before 1.92 (June 2025), PushFont(NULL) == PushFont(GetDefaultFont())
// font = g.Font;
if (font == NULL) // Before 1.92 (June 2025), PushFont(NULL) == PushFont(GetDefaultFont())
font = g.Font;
IM_ASSERT(font != NULL);
IM_ASSERT(font_size_base >= 0.0f);