Nightly 2021-05-17
Pre-release
Pre-release
core: Fix endless loop when layouting text If a textfield has word wrapping enabled, is very small in size and tries to layout a single character onto it, the layout code can run into an endless loop where it's creating new lines and trying to fit the text again. If text doesn't fit at the start of a line, it won't fit on the next either, so abort and display the whole text span on the line. Text will be cut-off. This can be reproduced with a AS2 file like this: class Test { static var app : Test; function Test() { _root.createTextField("tf",0,0,0,6,20); _root.tf.text = "0"; _root.tf.wordWrap = true; } static function main(mc) { app = new Test(); } } Build it with `mtasc -main -header 100:100:30 test.as -swf test.swf`