0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Convince windows to allow window sizes > screen size

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18932 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-07-07 11:14:25 +00:00
parent 5af17a02d5
commit 6d8ee8674d

View File

@ -58,6 +58,8 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM l
vo_dwidth = r.right;
vo_dheight = r.bottom;
break;
case WM_WINDOWPOSCHANGING:
return 0;
case WM_CLOSE:
mplayer_put_key(KEY_CLOSE_WIN);
break;