diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gfx_layout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gfx_layout.cpp b/src/gfx_layout.cpp index 785f412e1..c8286a04b 100644 --- a/src/gfx_layout.cpp +++ b/src/gfx_layout.cpp @@ -307,7 +307,7 @@ ParagraphLayout::Line *ParagraphLayout::nextLine(int max_width) } const FontCache *fc = iter->second->fc; - const WChar *next_run = this->buffer_begin + iter->first + 1; + const WChar *next_run = this->buffer_begin + iter->first; for (;;) { WChar c = *this->buffer++; @@ -322,7 +322,7 @@ ParagraphLayout::Line *ParagraphLayout::nextLine(int max_width) iter++; assert(iter != this->runs.End()); - next_run = this->buffer_begin + iter->first + 1; + next_run = this->buffer_begin + iter->first; begin = this->buffer; last_char = begin; |