Pass on all unhandeled messages to the owner.
This commit is contained in:
parent
5825025316
commit
f12e130fc2
|
@ -2977,7 +2977,7 @@ TAB_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
if (uMsg >= WM_USER)
|
||||
WARN("unknown msg %04x wp=%08x lp=%08lx\n",
|
||||
uMsg, wParam, lParam);
|
||||
return DefWindowProcA (hwnd, uMsg, wParam, lParam);
|
||||
return SendMessageA(GetParent(hwnd), uMsg, wParam, lParam);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue