usp10: Correct error in EDIT_GetLineRect in index for ScriptStringCPtoX.
This commit is contained in:
parent
cd6e9bd141
commit
27e3e1a89b
@ -1198,7 +1198,7 @@ static void EDIT_GetLineRect(EDITSTATE *es, INT line, INT scol, INT ecol, LPRECT
|
|||||||
pt2 = (ecol == -1) ? es->format_rect.right : (short)LOWORD(EDIT_EM_PosFromChar(es, line_index + ecol, TRUE));
|
pt2 = (ecol == -1) ? es->format_rect.right : (short)LOWORD(EDIT_EM_PosFromChar(es, line_index + ecol, TRUE));
|
||||||
if (ssa)
|
if (ssa)
|
||||||
{
|
{
|
||||||
ScriptStringCPtoX(ssa, line_index + scol, FALSE, &pt3);
|
ScriptStringCPtoX(ssa, scol, FALSE, &pt3);
|
||||||
pt3+=es->format_rect.left;
|
pt3+=es->format_rect.left;
|
||||||
}
|
}
|
||||||
else pt3 = pt1;
|
else pt3 = pt1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user