This commit is contained in:
Simon Montagu 2008-06-14 23:51:00 -07:00
Родитель c1dfa19c64
Коммит 01661c620a
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -371,7 +371,12 @@ nsPageFrame::DrawHeaderFooter(nsIRenderingContext& aRenderingContext,
return; // bail if couldn't find the correct length
}
PresContext()->SetBidiEnabled(HasRTLChars(str));
// Use this form rather than SetBidiEnabled(HasRTLChars(str)) so as not to
// turn off bidi processing when printing a page with bidi content in the
// page but not in the print headers.
if (HasRTLChars(str)) {
PresContext()->SetBidiEnabled(PR_TRUE);
}
// cacl the x and y positions of the text
nscoord x = GetXPosition(aRenderingContext, aRect, aJust, str);