mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Fonts: fix PushFont(NULL) to work as advertised.
Didn't properly finish ca72eb0.
This commit is contained in:
parent
dcf14505e2
commit
5bc70c68e2
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue