mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
riched20: Set the bidi base embedding level.
This commit is contained in:
parent
503c6caba6
commit
c409fc13fd
1 changed files with 8 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue