gdi32: Do not ignore USP_E_SCRIPT_NOT_IN_FONT when shaping glyphs.
This commit is contained in:
parent
f99e1d80e2
commit
a4d25f1260
|
@ -620,7 +620,7 @@ BOOL BIDI_Reorder(
|
|||
}
|
||||
res = ScriptShape(hDC, &psc, lpString + done + curItem->iCharPos, cChars, cMaxGlyphs, &curItem->a, run_glyphs, pwLogClust, psva, &cOutGlyphs);
|
||||
}
|
||||
if (res && res != USP_E_SCRIPT_NOT_IN_FONT)
|
||||
if (res)
|
||||
{
|
||||
FIXME("Unable to shape string (%x)\n",res);
|
||||
j = nItems;
|
||||
|
|
Loading…
Reference in New Issue