Add WS_HSCROLL style to the notepad's edit control.

oldstable
Dmitry Timoshkov 2004-07-08 20:18:10 +00:00 committed by Alexandre Julliard
parent fe2dcf7439
commit 341523d293
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ static LRESULT WINAPI NOTEPAD_WndProc(HWND hWnd, UINT msg, WPARAM wParam,
RECT rc;
GetClientRect(hWnd, &rc);
Globals.hEdit = CreateWindow(editW, NULL,
WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL |
WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL |
ES_AUTOVSCROLL | ES_MULTILINE,
0, 0, rc.right, rc.bottom, hWnd,
NULL, Globals.hInstance, NULL);