richedit: Fixed a bug preventing streaming out nested table properties.

This commit is contained in:
Dylan Smith 2008-09-30 17:11:36 -04:00 committed by Alexandre Julliard
parent 3af4419688
commit a3ac5ef094
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ ME_StreamOutRTF(ME_TextEditor *editor, ME_OutStream *pStream, int nStart, int nC
}
} else if (p->member.para.nFlags & MEPF_ROWEND) {
pStream->nNestingLevel--;
if (pStream->nNestingLevel > 1) {
if (pStream->nNestingLevel >= 1) {
if (!ME_StreamOutPrint(pStream, "{\\*\\nesttableprops"))
return FALSE;
if (!ME_StreamOutRTFTableProps(editor, pStream, p))