* Fix a bug in FTFont::DoRender() introduced by my FTSimpleLayout merge that was causing excessive spacing between characters.
diff --git a/src/FTFont.cpp b/src/FTFont.cpp
index 671d064..e5e3d76 100644
--- a/src/FTFont.cpp
+++ b/src/FTFont.cpp
@@ -267,7 +267,7 @@ void FTFont::DoRender(const unsigned int chr,
if(CheckGlyph(chr))
{
FTPoint kernAdvance = glyphList->Render(chr, nextChr, origin);
- origin += kernAdvance;
+ origin = kernAdvance;
}
}