From 3905749dd003877bf0adbc9e5eea5cbd3728588c Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 1 Sep 2002 21:20:25 +0000 Subject: [PATCH] Now always scrolls to the bottom git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@855 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/Makensisw/utils.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Contrib/Makensisw/utils.cpp b/Contrib/Makensisw/utils.cpp index c0da9e41..a388a2be 100644 --- a/Contrib/Makensisw/utils.cpp +++ b/Contrib/Makensisw/utils.cpp @@ -59,6 +59,7 @@ extern BOOL g_warnings; void LogMessage(HWND hwnd,const char *str) { SendDlgItemMessage(hwnd, IDC_LOGWIN, EM_REPLACESEL, 0, (WPARAM)str); + SendDlgItemMessage(hwnd, IDC_LOGWIN, WM_VSCROLL, SB_BOTTOM, 0); } void ErrorMessage(HWND hwnd,const char *str) {