So I’ve been trying to track down the code where UMultiLineEditableText computes the current line’s size and decides whether to wrap or not. This has led me to SMultiLineEditableText, and to the Slate concept of splitting into view/model and binding the Text member variable in the view to a function in the model that tells it how to update (the docs use the word “Delegate” in referencing Text, is that consistent with the concept in this page?).
Once I get to the underlying Slate widget though, I can’t find where the actual model is (I’m assuming that’s where the size is computed and all). Where might those files be?