Avoid -wid message processing blocking MPlayer.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25974 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-02-10 16:49:24 +00:00
parent 7aa07197ea
commit 2272b20c3d
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM l
case WM_RBUTTONDOWN:
case WM_RBUTTONUP:
case WM_RBUTTONDBLCLK:
SendMessage(WinID, message, wParam, lParam);
SendNotifyMessage(WinID, message, wParam, lParam);
}
return DefWindowProc(hWnd, message, wParam, lParam);