1
0
Fork 0

(svn r25568) -Fix: Non-ICU layouter started new lines with the space which triggered the linebreak.

release/1.4
frosch 2013-07-06 18:55:38 +00:00
parent 3fa1b4e8c3
commit 72a531bc82
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ ParagraphLayout::Line *ParagraphLayout::nextLine(int max_width)
last_char = this->buffer;
} else {
/* A space is found; perfect place to terminate */
this->buffer = last_space;
this->buffer = last_space + 1;
last_char = last_space;
}
break;