Fixed another case of misunderstanding MSDN wrt StreamInProc, causing
license text to be truncated in Picasa installer (as well as some other programs, especially those that display long texts with NSIS).
This commit is contained in:
parent
eddb6ff66d
commit
a8eb60e5ee
|
@ -290,7 +290,7 @@ static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, ME_InStrea
|
|||
}
|
||||
|
||||
ME_InsertTextFromCursor(editor, 0, pText, nWideChars, style);
|
||||
if (stream->dwSize < STREAMIN_BUFFER_SIZE)
|
||||
if (stream->dwSize == 0)
|
||||
break;
|
||||
stream->dwSize = 0;
|
||||
} while(1);
|
||||
|
|
Loading…
Reference in New Issue