Fine tune word wrap - it breaks on decimal point

Is there any way to fine tune word wrap on lables or is this a straightforward buglet?

I have status strings to display that have floating point numbers in them. The word wrap seems to wrap on either white space or a decimal point. (I’d expect that if the dp was followed by white space but it breaks in the middle of a temperature - eg 19.2C. On line one I have “19.” and on line two “2C”

When given text with multiple words, it will try to wrap on whitespace between the words but depending on the word there may not be enough room. Decimal points have no factor in this decision. It’s pure chance that happened. If your temperature was 109.2C it would probably wrap on the 9. You’ve configured the TextWrapping to Wrap & the control simply isn’t wide enough so it has to break at the decimal point.

I have reworded the status report to use more shorter words and the line breaks seem to make sense now. I think you are right in that it was just chance that was breaking the temperature values on the dp.
Thanks
Andy