don't forward WM_COMMAND if it was handled

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3644 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-09-03 12:52:29 +00:00
parent 4cb6161b0f
commit 91af95e1ef

View file

@ -600,11 +600,11 @@ skipPage:
{ {
outernotify(1); outernotify(1);
} }
if (id == IDC_BACK && m_page>0) else if (id == IDC_BACK && m_page>0)
{ {
outernotify(-1); outernotify(-1);
} }
if (id == IDCANCEL) else if (id == IDCANCEL)
{ {
if (g_exec_flags.abort) if (g_exec_flags.abort)
{ {