Returned WM_COMMAND forwarding as NSISdl is now fixed

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3302 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-12-23 16:29:36 +00:00
parent 2144a90eed
commit 0d092eeb01

View file

@ -580,8 +580,9 @@ skipPage:
}
else
{
// Forward WM_COMMANDs to inner dialogs, can be custom ones
//SendMessage(m_curwnd, uMsg, wParam, lParam);
// Forward WM_COMMANDs to inner dialogs, can be custom ones.
// Without this, enter on buttons in inner dialogs won't work.
SendMessage(m_curwnd, uMsg, wParam, lParam);
}
}
return HandleStaticBkColor();