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:
authorDiego Borghetti <bdiego@gmail.com>2009-06-12 21:18:59 +0400
committerDiego Borghetti <bdiego@gmail.com>2009-06-12 21:18:59 +0400
commit845e9a0e25ab7257005288fe2938a8ca9ca856d2 (patch)
treec27e2064ad29f429b5fe78874388491effc50ca0 /source/blender/blenfont/intern/blf.c
parent0e170f8e5633ee46c413ab759e9cf3ba1ffb82ea (diff)
Made the kerning a float, this give a little more of tweak.
0.5 is the default value now, the range are from -5.0 to 5.0. Note that we allow negative value, but the current draw code always check for overlap characters.
Diffstat (limited to 'source/blender/blenfont/intern/blf.c')
-rw-r--r--source/blender/blenfont/intern/blf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index ffb845f7888..f06c7fb0d28 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -492,7 +492,7 @@ void BLF_mode(int mode)
font->mode= mode;
}
-void BLF_kerning(int space)
+void BLF_kerning(float space)
{
FontBLF *font;