Commit c409fc13 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

riched20: Set the bidi base embedding level.

parent 503c6cab
......@@ -840,6 +840,14 @@ void ME_RTFParAttrHook(RTF_Info *info)
}
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) {
RTFFlushOutputBuffer(info);
......
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