From Farshid Lashkari, "I found a bug in the osgText library in version 1.2 that I believe still exists in the latest version.

I found that changing the alignment of a text object does not work properly if the text contains newline characters. I've attached a simple test case that shows the problem. If I set the text AFTER setting the alignment, everything works fine. But if I set the text BEFORE setting the alignment then the text is displayed incorrectly.

The fix is very simple. Instead of calling computePositions() in TextBase::setAlignment(), it calls computeGlyphRepresentation(). I've attached the modified TextBase.cpp."
This commit is contained in:
Robert Osfield
2009-06-20 11:35:22 +00:00
parent f79232495f
commit cc4cc7b403

View File

@@ -147,7 +147,7 @@ void TextBase::setAlignment(AlignmentType alignment)
if (_alignment==alignment) return;
_alignment = alignment;
computePositions();
computeGlyphRepresentation();
}
void TextBase::setAxisAlignment(AxisAlignment axis)