mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-1428 Paragraph::draw - need to call ubidi_setLine with lastChar + 1.
X-SVN-Rev: 7317
This commit is contained in:
parent
a8a3d9c46a
commit
9b103e24a0
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ void Paragraph::draw(void *surface, int32_t firstLine, int32_t lastLine)
|
|||
|
||||
x = MARGIN;
|
||||
|
||||
ubidi_setLine(fBidi, firstChar, lastChar, lBidi, &bidiStatus);
|
||||
ubidi_setLine(fBidi, firstChar, lastChar + 1, lBidi, &bidiStatus);
|
||||
|
||||
dirCount = ubidi_countRuns(lBidi, &bidiStatus);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue