Locking that actually works...

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1900 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-12-05 23:07:53 +00:00
parent 0c8f15a05e
commit de10398984

View file

@ -530,7 +530,7 @@ nextPage:
#ifdef NSIS_SUPPORT_CODECALLBACKS
// lock display for custom pages to prevent flickering
// the custom page must unlock the display
if (this_page->id<0 && uMsg != WM_INITDIALOG) LockWindowUpdate(hwndDlg);
if (this_page->id<0 && uMsg != WM_INITDIALOG) LockWindowUpdate(m_curwnd);
else LockWindowUpdate(0);
#endif