wPaint icon indicating copy to clipboard operation
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.

Open bs-thomas opened this issue 10 years ago • 0 comments

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

bs-thomas avatar Feb 25 '15 17:02 bs-thomas