Commit 8d8895bf authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

riched20: Don't clear the existing mask when reading a \ltrpar .

parent 12c54791
......@@ -864,7 +864,7 @@ void ME_RTFParAttrHook(RTF_Info *info)
info->fmt.wEffects |= PFE_RTLPARA;
break;
case rtfLTRPar:
info->fmt.dwMask = PFM_RTLPARA;
info->fmt.dwMask |= PFM_RTLPARA;
info->fmt.wEffects &= ~PFE_RTLPARA;
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment