Huw Davies : riched20: Set a temporary insert style for the new paragraph.

Alexandre Julliard julliard at winehq.org
Wed Oct 5 13:43:08 CDT 2016


Module: wine
Branch: master
Commit: 2dbcddc6605e7e7ebad75e27774136063b6dd80b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2dbcddc6605e7e7ebad75e27774136063b6dd80b

Author: Huw Davies <huw at codeweavers.com>
Date:   Wed Oct  5 10:08:26 2016 +0100

riched20: Set a temporary insert style for the new paragraph.

Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/riched20/editor.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c
index 7b934fe..78cb50c 100644
--- a/dlls/riched20/editor.c
+++ b/dlls/riched20/editor.c
@@ -2392,7 +2392,6 @@ ME_KeyDown(ME_TextEditor *editor, WORD nKey)
           }
 
           style = ME_GetInsertStyle(editor, 0);
-          ME_SaveTempStyle(editor, style);
           ME_ContinueCoalescingTransaction(editor);
           if (shift_is_down)
             ME_InsertEndRowFromCursor(editor, 0);
@@ -2401,12 +2400,13 @@ ME_KeyDown(ME_TextEditor *editor, WORD nKey)
               ME_InsertTextFromCursor(editor, 0, &endl, 1, style);
             else
               ME_InsertTextFromCursor(editor, 0, endlv10, 2, style);
-          ME_ReleaseStyle(style);
           ME_CommitCoalescingUndo(editor);
           SetCursor(NULL);
 
           ME_UpdateSelectionLinkAttribute(editor);
           ME_UpdateRepaint(editor, FALSE);
+          ME_SaveTempStyle(editor, style); /* set the temp insert style for the new para */
+          ME_ReleaseStyle(style);
         }
         return TRUE;
       }




More information about the wine-cvs mailing list