Default Script Fixes
There is a problem with the default TextArea.lua widget script.
Your game will crash when you click on an empty TextArea.
Fix:
look for the Function "Script:GetCaretCoord(caret)"
after:
local text = self.lines[self.currentline]--self.widget:GetText()
add:
if text == nil then return 0 end
More will be added when/if discovered...
0 Comments
Recommended Comments
There are no comments to display.