riched20: Set the bidi base embedding level.

This commit is contained in:
Huw Davies 2013-03-25 11:05:55 +00:00 committed by Alexandre Julliard
parent 503c6caba6
commit c409fc13fd

View File

@ -840,6 +840,14 @@ void ME_RTFParAttrHook(RTF_Info *info)
} }
break; break;
} }
case rtfRTLPar:
fmt.dwMask = PFM_RTLPARA;
fmt.wEffects = PFE_RTLPARA;
break;
case rtfLTRPar:
fmt.dwMask = PFM_RTLPARA;
fmt.wEffects = 0;
break;
} }
if (fmt.dwMask) { if (fmt.dwMask) {
RTFFlushOutputBuffer(info); RTFFlushOutputBuffer(info);