For example “aaaa bbbbbbbbbbbbbbb”
Most text editors do it this way, but the current behavior takes up 3 lines:
This is what it should do:
It’s going to split the second word in half either way
For example “aaaa bbbbbbbbbbbbbbb”
Most text editors do it this way, but the current behavior takes up 3 lines:
This is what it should do:
It’s going to split the second word in half either way
I see what you’re implying, but how would the text system discern words that can and should not be split before starting a new line?
“Hello, my pseudonym is Frank Smith.”
Hello, my
pseudonym is
Frank Smith.
Hello, my ps
eudonym is F
rank Smith.
“Evacuate the garbage disposal immediately.”
Evacuate the
garbage
disposal
immediately.
Evacuate the
garbage dis-
posal immed-
iately.
You can just use split the words without the hyphens but imho it just doesn’t look as good as the current TextWrapped behavior.
It’s not that complicated, you just need to wait until you get to the end of the word, then check if the word’s total width is greater than the container’s width.
I implemented it in my chat gui to help with spam.
Yes please! I want to be able to enable text scaling and not worry about words being cut off.