Fix #10057: FallbackParagraphLayout fails to properly wrap

... during the first word after a new run has been started.
This commit is contained in:
Rubidium 2023-01-15 08:51:00 +01:00 committed by rubidium42
parent 96ec9908a0
commit c578917783
1 changed files with 1 additions and 3 deletions

View File

@ -552,8 +552,6 @@ std::unique_ptr<const ParagraphLayouter::Line> FallbackParagraphLayout::NextLine
next_run = this->buffer_begin + iter->first;
begin = this->buffer;
last_space = nullptr;
}
if (IsWhitespace(c)) last_space = this->buffer;
@ -591,7 +589,7 @@ std::unique_ptr<const ParagraphLayouter::Line> FallbackParagraphLayout::NextLine
this->buffer++;
}
if (l->size() == 0 || last_char - begin != 0) {
if (l->size() == 0 || last_char - begin > 0) {
int w = l->GetWidth();
l->emplace_back(iter->second, begin, last_char - begin, w);
}