Hello!
I am using the TAdvRichEditor and noticed that words are disappearing at the right border, depending on the word wrapping position.
When a text block has an indent and is centered, small words disappear in the indent area.
To reproduce, add a TAdvRichEditor in a form and set the Align to alClient
TTextElement *txtElement;
advrchdtr1->AddLineBreak();
txtElement = advrchdtr1->AddText(
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.",
TAlignment::taCenter);
txtElement->LeftIndent = 20;
txtElement->RightIndent = 20;
_
Depending on the width of the control, you can notice some words missing on the right:

When resizing (increasing the form-width) a little bit, words reappear on the right side since there is now enough place.
Please have a look into it.
Thanks
Björn
(C++Builder Tokyo, VCL UI Pack 13.5.8.0)
