I have a problem with empty lines in CEGUI.When I write:
Code: Select all
pText->setText("line1\nline2");I have the right result:
line1
line2
but when I write:
Code: Select all
pText->setText("line1\n\nline2");or:
Code: Select all
pText->setText("line1\n \nline2");or even:
Code: Select all
pText->setText("line1\n \t \n line2");The empty lines are ignored, and I still have :
line1
line2
(I am using the version included in ogre 1.0)
Is that a bug, and is there a workaround ?
Thanks
