mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[regedit] Process WM_COMMAND button click messages in the local window as well
See issue #5927 for more details. svn path=/trunk/; revision=51532
This commit is contained in:
parent
16b032b455
commit
c81830d2e6
1 changed files with 2 additions and 1 deletions
|
@ -367,7 +367,8 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa
|
|||
{
|
||||
PostMessage(g_pChildWnd->hAddressBarWnd, WM_KEYUP, VK_RETURN, 0);
|
||||
}
|
||||
else if (!_CmdWndProc(hWnd, message, wParam, lParam))
|
||||
|
||||
if (!_CmdWndProc(hWnd, message, wParam, lParam))
|
||||
{
|
||||
goto def;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue