[Bf-blender-cvs] [694481095ba] master: Fix for T101506: BLF Disable Kerning in Main Font

Harley Acheson noreply at git.blender.org
Mon Oct 17 17:36:33 CEST 2022


Commit: 694481095baca58d13474aed26ee7619615399b2
Author: Harley Acheson
Date:   Mon Oct 17 08:35:11 2022 -0700
Branches: master
https://developer.blender.org/rB694481095baca58d13474aed26ee7619615399b2

Fix for T101506: BLF Disable Kerning in Main Font

Disable kerning in our main font to exactly restore the spacing of text
as seen in Blender 3.1 - 3.3

See D16186 for more details.

Differential Revision: https://developer.blender.org/D16186

Reviewed by Brecht Van Lommel

===================================================================

M	source/blender/blenfont/intern/blf.c

===================================================================

diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index a673f4a1bc7..d4f5be617fd 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -162,6 +162,14 @@ int BLF_load_unique(const char *name)
   }
 
   FontBLF *font = blf_font_new(name, filepath);
+
+  /* XXX: Temporarily disable kerning in our main font. Kerning had been accidentally removed from
+   * our font in 3.1. In 3.4 we disable kerning here in the new version to keep spacing the same
+   * (T101506). Enable again later with change of font, placement, or rendering - Harley. */
+  if (font && BLI_str_endswith(filepath, BLF_DEFAULT_PROPORTIONAL_FONT)) {
+    font->face_flags &= ~FT_FACE_FLAG_KERNING;
+  }
+
   MEM_freeN(filepath);
 
   if (!font) {



More information about the Bf-blender-cvs mailing list