winhlp32: Invalidate scrollbar when changing pages.

This commit is contained in:
Dylan Smith 2009-03-23 10:34:55 -04:00 committed by Alexandre Julliard
parent b4d4625890
commit 2592fea305
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ static void WINHELP_SetupText(HWND hTextWnd, WINHELP_WINDOW* win, ULONG relative
SendMessage(hTextWnd, EM_SETSCROLLPOS, 0, (LPARAM)&pt); SendMessage(hTextWnd, EM_SETSCROLLPOS, 0, (LPARAM)&pt);
} }
SendMessage(hTextWnd, WM_SETREDRAW, TRUE, 0); SendMessage(hTextWnd, WM_SETREDRAW, TRUE, 0);
InvalidateRect(hTextWnd, NULL, TRUE); RedrawWindow(hTextWnd, NULL, NULL, RDW_FRAME|RDW_INVALIDATE);
} }
/*********************************************************************** /***********************************************************************