WIP - PushFontSize() with -1 uses sources[0]'s size for now (backward compat design)

This commit is contained in:
ocornut 2025-02-03 19:36:11 +01:00
parent ea3b921611
commit 810f905469

View file

@ -8517,7 +8517,7 @@ void ImGui::PushFont(ImFont* font, float font_size)
if (font == NULL)
font = GetDefaultFont();
if (font_size < 0.0f)
font_size = g.FontSize;
font_size = font->Sources[0].SizePixels; // g.FontSize;
g.FontStack.push_back({ font, font_size });
SetCurrentFont(font, font_size);
}