wPaint
wPaint copied to clipboard
When you create a text object with 2 lines, the second line gets cut to the length of the first line.
This bug appears in the demo as well.
Try to make a text object, type in:
aaa bbbb
Once you click away, the text will automatically become
aaa bbb
(Notice one "b" goes missing)
There is a bug with wPaint.menu.text.js;187
Original: for (j = 0, jj = lines[0].length; j < jj; j++) { My Fix: for (j = 0, jj = lines[i].length; j < jj; j++) {
Thanks!
Cheers, Thomas