[PATCH] riched20: Fix saving to disk first-indent and left-indent (\fi and \li)

Philip Hardin phoss at tutanota.com
Wed Sep 29 11:01:32 CDT 2021


Signed-off-by: Philip Hardin <phoss at tutanota.com>
---
dlls/riched20/writer.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/dlls/riched20/writer.c b/dlls/riched20/writer.c
index 7c7e648f107..2477dda7407 100644
--- a/dlls/riched20/writer.c
+++ b/dlls/riched20/writer.c
@@ -662,10 +662,12 @@ static BOOL stream_out_para_props( ME_TextEditor *editor, ME_OutStream *pStream,
   if (!(editor->bEmulateVersion10 && /* v1.0 - 3.0 */
         fmt->dwMask & PFM_TABLE && fmt->wEffects & PFE_TABLE))
   {
-    if (fmt->dxOffset)
-      sprintf(props + strlen(props), "\\li%d", fmt->dxOffset);
-    if (fmt->dxStartIndent)
-      sprintf(props + strlen(props), "\\fi%d", fmt->dxStartIndent);
+    int first_indent = -fmt->dxOffset;
+    int left_indent = fmt->dxStartIndent + fmt->dxOffset;
+    if (first_indent)
+      sprintf(props + strlen(props), "\\fi%d", first_indent);
+    if (left_indent)
+      sprintf(props + strlen(props), "\\li%d", left_indent);
     if (fmt->dxRightIndent)
       sprintf(props + strlen(props), "\\ri%d", fmt->dxRightIndent);
     if (fmt->dwMask & PFM_TABSTOPS) {
--
2.25.1




More information about the wine-devel mailing list