Hi -
Here’s a subtle little question, very low-priority…
I’m rendering messages in my app with a timestamp in the bottom right hand corner against each message, and I don’t want the message text to overlap it.
Obviously the timestamp could go on its own line but it seems a shame to waste the vertical space.
I can get it to not overlap that bottom right corner if I add some trailing whitespace to the text - but it looks like display.newText trims the whitespace:
i.e.
display.newText( ‘Hello’…’ ’ ) renders ‘Hello’
whereas
display.newText( ‘Hello’…’ a’ ) renders ‘Hello a’
Is there any way to make it render the spaces in the first example?
Tom

Terribly hacky, but will give it a go!