Skip to content

Commit c81830d

Browse files
committed
[regedit] Process WM_COMMAND button click messages in the local window as well
See issue reactos#5927 for more details. svn path=/trunk/; revision=51532
1 parent 16b032b commit c81830d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reactos/base/applications/regedit/childwnd.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,8 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa
367367
{
368368
PostMessage(g_pChildWnd->hAddressBarWnd, WM_KEYUP, VK_RETURN, 0);
369369
}
370-
else if (!_CmdWndProc(hWnd, message, wParam, lParam))
370+
371+
if (!_CmdWndProc(hWnd, message, wParam, lParam))
371372
{
372373
goto def;
373374
}

0 commit comments

Comments
 (0)