mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Fonts: removed unnecessary const qualifier from ImFont::FindGlyph()
Amend 0bde57c
This commit is contained in:
parent
4f1d3809c3
commit
914fbcf2e5
3 changed files with 12 additions and 10 deletions
|
|
@ -4252,7 +4252,7 @@ void ImGui::PushPasswordFont()
|
|||
ImGuiContext& g = *GImGui;
|
||||
ImFont* in_font = g.Font;
|
||||
ImFont* out_font = &g.InputTextPasswordFont;
|
||||
const ImFontGlyph* glyph = in_font->FindGlyph('*');
|
||||
ImFontGlyph* glyph = in_font->FindGlyph('*');
|
||||
out_font->FontSize = in_font->FontSize;
|
||||
out_font->Scale = in_font->Scale;
|
||||
out_font->Ascent = in_font->Ascent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue