Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/blenfont/intern/blf_glyph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c
index 1867df3100c..f46a74a739a 100644
--- a/source/blender/blenfont/intern/blf_glyph.c
+++ b/source/blender/blenfont/intern/blf_glyph.c
@@ -316,7 +316,7 @@ GlyphBLF *blf_glyph_add(FontBLF *font, GlyphCacheBLF *gc, unsigned int index, un
FT_Outline_EmboldenXY(&font->face->glyph->outline, extra_x, extra_y);
if ((font->face->face_flags & FT_FACE_FLAG_FIXED_WIDTH) == 0) {
/* Need to increase advance, but not for fixed-width fonts. */
- font->face->glyph->advance.x += (int) (extra_x * 1.05f);
+ font->face->glyph->advance.x += (FT_Pos)(((float)extra_x) * 1.05f);
font->face->glyph->advance.y += extra_y;
}
else {