mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-16 00:54:19 +00:00
ImFont: Renamed ImFont::Glyph to ImFontGlyph (for consistency and so ImFontAtlas types can use it without ordering half of the file). Left a redirection type.
This commit is contained in:
parent
072d6d8cb5
commit
10bb9524eb
4 changed files with 24 additions and 20 deletions
|
|
@ -7847,7 +7847,7 @@ bool ImGui::InputTextEx(const char* label, char* buf, int buf_size, const ImVec2
|
|||
// Password pushes a temporary font with only a fallback glyph
|
||||
if (is_password)
|
||||
{
|
||||
const ImFont::Glyph* glyph = g.Font->FindGlyph('*');
|
||||
const ImFontGlyph* glyph = g.Font->FindGlyph('*');
|
||||
ImFont* password_font = &g.InputTextPasswordFont;
|
||||
password_font->FontSize = g.Font->FontSize;
|
||||
password_font->Scale = g.Font->Scale;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue