From fe197ce5291b397d0503e20b58d41c1cb9052a47 Mon Sep 17 00:00:00 2001 From: kichik Date: Mon, 11 Nov 2002 16:45:30 +0000 Subject: [PATCH] Now always unlocks the dialog git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1667 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/Ui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/exehead/Ui.c b/Source/exehead/Ui.c index 6bdd4d83..97f07e06 100644 --- a/Source/exehead/Ui.c +++ b/Source/exehead/Ui.c @@ -555,7 +555,6 @@ nextPage: SetWindowPos(m_curwnd,0,r.left,r.top,0,0,SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOZORDER); SendMessage(m_curwnd, WM_NOTIFY_START, 0, 0); ShowWindow(m_curwnd,SW_SHOWNA); - LockWindowUpdate(0); } //XGE 5th September 2002 - Do *not* move the focus to the OK button if we are @@ -569,6 +568,8 @@ nextPage: #ifdef NSIS_SUPPORT_CODECALLBACKS ExecuteCodeSegment(this_page->postfunc,NULL); #endif //NSIS_SUPPORT_CODECALLBACKS + + LockWindowUpdate(0); } } if (uMsg == WM_COMMAND)