From 2d363fa315e97e3b4b1a5e1a800d0fbd6378e2c1 Mon Sep 17 00:00:00 2001 From: Michael Savage Date: Thu, 31 Jan 2019 15:19:15 +0200 Subject: [PATCH] Fixed doc typo (#2326) --- imgui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.h b/imgui.h index c12f9739..dd859441 100644 --- a/imgui.h +++ b/imgui.h @@ -2079,7 +2079,7 @@ struct ImFont { // Members: Hot ~62/78 bytes float FontSize; // // Height of characters, set during loading (don't change after loading) - float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetFontScale() + float Scale; // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetWindowFontScale() ImVec2 DisplayOffset; // = (0.f,0.f) // Offset font rendering by xx pixels ImVector Glyphs; // // All glyphs. ImVector IndexAdvanceX; // // Sparse. Glyphs->AdvanceX in a directly indexable way (more cache-friendly, for CalcTextSize functions which are often bottleneck in large UI).