fix test logic

This commit is contained in:
artemp 2017-02-17 15:32:03 +01:00
parent 302e4c75dd
commit e55918788c

View file

@ -172,7 +172,7 @@ static void shape_text(text_line & line,
for (auto c : clusters) for (auto c : clusters)
{ {
auto itr = glyphinfos.find(c); auto itr = glyphinfos.find(c);
if (itr == glyphinfos.end() || (!itr->second.empty() && itr->second.front().glyph.codepoint == 0)) if (itr == glyphinfos.end() || itr->second.empty() || (itr->second.front().glyph.codepoint == 0))
{ {
all_set = false; all_set = false;
break; break;