fixed text rendering problem. Closes #12

This commit is contained in:
oy 2010-08-18 00:21:38 +02:00 committed by GreYFoXGTi
parent 57f54108b5
commit d972e4ed69

View file

@ -570,6 +570,8 @@ public:
pSizeData = GetSize(pFont, ActualSize);
RenderSetup(pFont, ActualSize);
float Scale = 1/pSizeData->m_FontSize;
// set length
if(Length < 0)
@ -679,7 +681,7 @@ public:
Graphics()->QuadsDrawTL(&QuadItem, 1);
}
Advance = pChr->m_AdvanceX + Kerning(pFont, Character, Nextcharacter)/Size;
Advance = pChr->m_AdvanceX + Kerning(pFont, Character, Nextcharacter)*Scale;
}
if(pCursor->m_Flags&TEXTFLAG_STOP_AT_END && DrawX+(Advance+pChr->m_Width)*Size-pCursor->m_StartX > pCursor->m_LineWidth)