From 0d092eeb0121b8d1fde69f8ea3c2a5c1fb990cc9 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 23 Dec 2003 16:29:36 +0000 Subject: [PATCH] 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 --- Source/exehead/Ui.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/exehead/Ui.c b/Source/exehead/Ui.c index fa3120de..7ab8a535 100644 --- a/Source/exehead/Ui.c +++ b/Source/exehead/Ui.c @@ -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();