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:
Diffstat (limited to 'source/blender/ftfont/intern/FTF_TTFont.cpp')
-rw-r--r--source/blender/ftfont/intern/FTF_TTFont.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/ftfont/intern/FTF_TTFont.cpp b/source/blender/ftfont/intern/FTF_TTFont.cpp
index ef17a610cd9..5dbcf368331 100644
--- a/source/blender/ftfont/intern/FTF_TTFont.cpp
+++ b/source/blender/ftfont/intern/FTF_TTFont.cpp
@@ -185,8 +185,8 @@ int FTF_TTFont::SetFont(char* str, int size)
fontl = new FTGLPixmapFont(str);
success = fonts->FaceSize(size-2<8?8:size-2);
- success = fontm->FaceSize(size);
- success = fontl->FaceSize(size+2);
+ success = fontm->FaceSize(size-1<8?8:size-1);
+ success = fontl->FaceSize(size);
if(!success) return 0;
success = fonts->CharMap(ft_encoding_unicode);
@@ -238,8 +238,8 @@ void FTF_TTFont::SetEncoding(char* str)
void FTF_TTFont::SetSize(int size)
{
fonts->FaceSize(size-2<8?8:size-2);
- fontm->FaceSize(size);
- fontl->FaceSize(size+2);
+ fontm->FaceSize(size-1<8?8:size-1);
+ fontl->FaceSize(size);
font_size = size;
}