riched20: Don't force an update when styles are changed.
The appropriate region has already been invalidated and will be repainted in due course. Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
03a93eb80e
commit
04040d0aca
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue