Commit 95e527b0 authored by Phil Krylov's avatar Phil Krylov Committed by Alexandre Julliard

Changed buffer size for EM_STREAMIN message to 4096, as it's what M$

uses.
parent c10dcfaf
...@@ -238,7 +238,7 @@ ME_TextBuffer *ME_MakeText() { ...@@ -238,7 +238,7 @@ ME_TextBuffer *ME_MakeText() {
return buf; 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) static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, EDITSTREAM *stream, ME_Style *style)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment