From e1825093b81981c86b0c33d0037987d03c5573d1 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 10 Sep 2002 13:50:13 +0000 Subject: [PATCH] Now scrolls on Windows 9x as it should git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@971 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/Makensisw/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contrib/Makensisw/utils.cpp b/Contrib/Makensisw/utils.cpp index 444014d8..83163886 100644 --- a/Contrib/Makensisw/utils.cpp +++ b/Contrib/Makensisw/utils.cpp @@ -60,7 +60,7 @@ extern BOOL g_warnings; void LogMessage(HWND hwnd,const char *str) { SendDlgItemMessage(hwnd, IDC_LOGWIN, EM_SETSEL, -1, 0); SendDlgItemMessage(hwnd, IDC_LOGWIN, EM_REPLACESEL, 0, (WPARAM)str); - SendDlgItemMessage(hwnd, IDC_LOGWIN, WM_VSCROLL, SB_BOTTOM, 0); + SendDlgItemMessage(hwnd, IDC_LOGWIN, EM_SCROLLCARET, /*SB_BOTTOM*/0, 0); } void ErrorMessage(HWND hwnd,const char *str) {