Skip to content
This repository has been archived by the owner on Aug 25, 2022. It is now read-only.

When you create a text object with 2 lines, the second line gets cut to the length of the first line. #102

Open
bs-thomas opened this issue Feb 25, 2015 · 0 comments

Comments

@bs-thomas
Copy link

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant