Author: gschneider
Date: Sun May  1 15:16:55 2011
New Revision: 51532

URL: http://svn.reactos.org/svn/reactos?rev=51532&view=rev
Log:
[regedit] Process WM_COMMAND button click messages in the local window as well
See issue #5927 for more details.

Modified:
    trunk/reactos/base/applications/regedit/childwnd.c

Modified: trunk/reactos/base/applications/regedit/childwnd.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/regedit/childwnd.c?rev=51532&r1=51531&r2=51532&view=diff
==============================================================================
--- trunk/reactos/base/applications/regedit/childwnd.c [iso-8859-1] (original)
+++ trunk/reactos/base/applications/regedit/childwnd.c [iso-8859-1] Sun May  1 
15:16:55 2011
@@ -367,7 +367,8 @@
         {
             PostMessage(g_pChildWnd->hAddressBarWnd, WM_KEYUP, VK_RETURN, 0);
         }
-        else if (!_CmdWndProc(hWnd, message, wParam, lParam))
+
+        if (!_CmdWndProc(hWnd, message, wParam, lParam))
         {
             goto def;
         }


Reply via email to