From 95e527b0f4b5a2bafd22e5d96fa83cf0bf026d51 Mon Sep 17 00:00:00 2001 From: Phil Krylov Date: Wed, 9 Mar 2005 12:40:01 +0000 Subject: [PATCH] Changed buffer size for EM_STREAMIN message to 4096, as it's what M$ uses. --- dlls/riched20/editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index a54f527b6d9..c4f8d59de1f 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -238,7 +238,7 @@ ME_TextBuffer *ME_MakeText() { return buf; } -#define STREAMIN_BUFFER_SIZE 1024 +#define STREAMIN_BUFFER_SIZE 4096 /* M$ compatibility */ static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, EDITSTREAM *stream, ME_Style *style) {