[REGEDIT] F4, Alt+D, Tab, and Shift+Tab (#4885)

CORE-12323
This commit is contained in:
Katayama Hirofumi MZ 2022-11-19 08:42:20 +09:00 committed by GitHub
parent ffe3109d37
commit f908d37bb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
33 changed files with 74 additions and 3 deletions

View file

@ -191,7 +191,7 @@ BOOL TranslateChildTabMessage(PMSG msg)
if (msg->wParam != VK_TAB) return FALSE;
if (GetParent(msg->hwnd) != g_pChildWnd->hWnd) return FALSE;
PostMessageW(g_pChildWnd->hWnd, WM_COMMAND, ID_SWITCH_PANELS, 0);
PostMessageW(hFrameWnd, WM_COMMAND, ID_SWITCH_PANELS, 0);
return TRUE;
}