Add missing \n to world_wrap. Close #2516

The issue was that world_wrap would skip over newlines, without adding them to the output.
This commit is contained in:
Bojidar Marinov 2015-09-24 10:17:06 +03:00
parent 20a1c765db
commit d9583f8a72
1 changed files with 1 additions and 1 deletions

View File

@ -3066,7 +3066,7 @@ String String::world_wrap(int p_chars_per_line) const {
} else if (operator[](i)==' ' || operator[](i)=='\t') { } else if (operator[](i)==' ' || operator[](i)=='\t') {
last_space=i; last_space=i;
} else if (operator[](i)=='\n') { } else if (operator[](i)=='\n') {
ret+=substr(from,i-from); ret+=substr(from,i-from)+"\n";
from=i+1; from=i+1;
last_space=-1; last_space=-1;
} }