Changeset - r20542:9e821a32b14d
[Not reviewed]
master
0 1 0
frosch - 11 years ago 2013-07-06 18:55:38
frosch@openttd.org
(svn r25568) -Fix: Non-ICU layouter started new lines with the space which triggered the linebreak.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gfx_layout.cpp
Show inline comments
 
@@ -355,7 +355,7 @@ ParagraphLayout::Line *ParagraphLayout::
 
					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;
0 comments (0 inline, 0 general)