http://bugs.winehq.org/show_bug.cgi?id=6206
------- Additional Comments From mike@codeweavers.com 2006-05-11 01:15 -------
The following hack stops it from crashing...
diff --git a/dlls/riched20/paint.c b/dlls/riched20/paint.c index 71ae918..4b6efcb 100644 --- a/dlls/riched20/paint.c +++ b/dlls/riched20/paint.c @@ -117,7 +117,7 @@ void ME_UpdateRepaint(ME_TextEditor *edi pCursor = &editor->pCursors[0]; ME_EnsureVisible(editor, pCursor->pRun);
- ME_SendOldNotify(editor, EN_CHANGE); + //ME_SendOldNotify(editor, EN_CHANGE); ME_Repaint(editor); ME_SendSelChange(editor); }