wordpad: Request WS_VSCROLL now that riched20 supports it.

oldstable
Matt Finnicum 2006-08-08 16:08:43 -04:00 committed by Alexandre Julliard
parent 658c0cdd1a
commit 43a23b00a7
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ static LRESULT OnCreate( HWND hWnd, WPARAM wParam, LPARAM lParam)
assert(hDLL);
hEditorWnd = CreateWindowExW(WS_EX_CLIENTEDGE, wszRichEditClass, NULL,
WS_CHILD|WS_VISIBLE|ES_MULTILINE|ES_AUTOVSCROLL|ES_WANTRETURN,
WS_CHILD|WS_VISIBLE|ES_MULTILINE|ES_AUTOVSCROLL|ES_WANTRETURN|WS_VSCROLL,
0, 0, 1000, 100, hWnd, (HMENU)IDC_EDITOR, hInstance, NULL);
if (!hEditorWnd)
{