[PATCH 2/6] riched20: Don't force an update when styles are changed.

Huw Davies huw at codeweavers.com
Thu Aug 15 05:06:36 CDT 2019


The appropriate region has already been invalidated and will be
repainted in due course.

Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 dlls/riched20/editor.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c
index d0034fc317..61f7a0e66b 100644
--- a/dlls/riched20/editor.c
+++ b/dlls/riched20/editor.c
@@ -3578,7 +3578,6 @@ static LRESULT handle_EM_SETCHARFORMAT( ME_TextEditor *editor, WPARAM flags, con
     {
         ME_WrapMarkedParagraphs( editor );
         ME_UpdateScrollBar( editor );
-        ME_Repaint( editor );
     }
     return 1;
 }
@@ -3730,7 +3729,6 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
       ME_CommitUndo(editor);
       ME_WrapMarkedParagraphs(editor);
       ME_UpdateScrollBar(editor);
-      ME_Repaint(editor);
 
       return TRUE;
   }
@@ -4005,7 +4003,6 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
     BOOL result = ME_SetSelectionParaFormat(editor, (PARAFORMAT2 *)lParam);
     ME_WrapMarkedParagraphs(editor);
     ME_UpdateScrollBar(editor);
-    ME_Repaint(editor);
     ME_CommitUndo(editor);
     return result;
   }
-- 
2.18.0




More information about the wine-devel mailing list