The problem with just using auto text wrapping is that words towards the end of a line may “jump” to the next line as they are typed out. For example, take this “dialogue box”:
+----------------------+
| Hello, world! This |
| dialogue box is cool.|
+----------------------+
While the word “dialogue” is being written, it can appear like this:
+----------------------+
| Hello, world! This di|
| |
+----------------------+
but as soon as the next letter is written, “dialogue” will jump to the next line due to being too long:
+----------------------+
| Hello, world! This |
| dia |
+----------------------+
Is there any way in blueprint for me to manually jump to the next line after the one above reaches a limit but without this weird “Jump”?