changeset 18927:278eaf3ed5d8

Convince windows to allow window sizes > screen size
author reimar
date Fri, 07 Jul 2006 11:14:25 +0000
parents a163f6de7bdc
children 586777f09b1b
files libvo/w32_common.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/w32_common.c	Fri Jul 07 09:22:53 2006 +0000
+++ b/libvo/w32_common.c	Fri Jul 07 11:14:25 2006 +0000
@@ -58,6 +58,8 @@
 	    vo_dwidth = r.right;
 	    vo_dheight = r.bottom;
 	    break;
+	case WM_WINDOWPOSCHANGING:
+            return 0;
 	case WM_CLOSE:
 	    mplayer_put_key(KEY_CLOSE_WIN);
 	    break;