You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: imgui.h
+9-3
Original file line number
Diff line number
Diff line change
@@ -499,9 +499,13 @@ namespace ImGui
499
499
IMGUI_API voidSetScrollFromPosY(float local_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position.
500
500
501
501
// Parameters stacks (font)
502
-
IMGUI_API voidPushFont(ImFont* font, float font_size = -1); // use NULL as a shortcut to push default font. Use <0.0f to keep current font size.
502
+
// *IMPORTANT* before 1.92, fonts had a single size. They can now be dynamically be adjusted.
503
+
// - Before 1.92: PushFont() always used font default size.
504
+
// - Since 1.92: PushFont() preserve the current shared font size.
505
+
// - To use old behavior: use 'PushFont(font, font->DefaultSize)' in call site, or set 'ImFontConfig::Flags |= ImFontFlags_UseDefaultSize' before calling AddFont().
506
+
IMGUI_API voidPushFont(ImFont* font, float font_size = -1); // use NULL as a shortcut to push default font. Use <0.0f to keep current font size. Use font->DefaultSize to revert to font default size.
503
507
IMGUI_API voidPopFont();
504
-
IMGUI_API voidPushFontSize(floatsize);
508
+
IMGUI_API voidPushFontSize(floatfont_size);
505
509
IMGUI_API voidPopFontSize();
506
510
507
511
// Parameters stacks (shared)
@@ -3800,6 +3804,7 @@ enum ImFontFlags_
3800
3804
ImFontFlags_LockBakedSizes = 1 << 0, // Disable loading new baked sizes, disable garbage collecting current ones. e.g. if you want to lock a font to a single size.
3801
3805
ImFontFlags_NoLoadGlyphs = 1 << 1, // Disable loading new glyphs.
3802
3806
ImFontFlags_NoLoadError = 1 << 2, // Disable throwing an error/assert when calling AddFontXXX() with missing file/data. Calling code is expected to check AddFontXXX() return value.
3807
+
ImFontFlags_UseDefaultSize = 1 << 3, // Legacy compatibility: make PushFont() calls without explicit size use font->DefaultSize instead of current font size.
3803
3808
};
3804
3809
3805
3810
// Font runtime data and rendering
@@ -3817,6 +3822,7 @@ struct ImFont
3817
3822
// [Internal] Members: Cold ~24-52 bytes
3818
3823
// Conceptually Sources[] is the list of font sources merged to create this font.
3819
3824
ImGuiID FontId; // Unique identifier for the font
3825
+
float DefaultSize; // 4 // in // Default font size
3820
3826
short SourcesCount; // 2 // in // Number of ImFontConfig involved in creating this font. Usually 1, or >1 when merging multiple font sources into one ImFont.
3821
3827
ImFontConfig* Sources; // 4-8 // in // Pointer within ContainerAtlas->Sources[], to SourcesCount instances
3822
3828
ImWchar EllipsisChar; // 2-4 // out // Character used for ellipsis rendering ('...').
0 commit comments