riched20: Set the bidi base embedding level.

oldstable
Huw Davies 2013-03-25 11:05:55 +00:00 committed by Alexandre Julliard
parent 503c6caba6
commit c409fc13fd
1 changed files with 8 additions and 0 deletions

View File

@ -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);