From d421202d77c5b3109eede5e7b0712fcfa054d7b8 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 21 Sep 2009 09:47:53 +0000 Subject: [PATCH] Fixed bug #778 Derek Weitzel 2009-08-11 12:17:09 PDT Window Manager: xorg-x11-twm-1.0.1-3.1 Running through Xdmx. The same application could expand to the full screen using GLUT (freeglut). Overview: While running on a very high resolution display, discovered the maximium width of the window is 4096. --- src/video/x11/SDL_x11video.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/video/x11/SDL_x11video.c b/src/video/x11/SDL_x11video.c index c346ae6ef..25b51151d 100644 --- a/src/video/x11/SDL_x11video.c +++ b/src/video/x11/SDL_x11video.c @@ -771,16 +771,11 @@ static void X11_SetSizeHints(_THIS, int w, int h, Uint32 flags) hints = XAllocSizeHints(); if ( hints ) { - if ( flags & SDL_RESIZABLE ) { - hints->min_width = 32; - hints->min_height = 32; - hints->max_height = 4096; - hints->max_width = 4096; - } else { + if (!(flags & SDL_RESIZABLE)) { hints->min_width = hints->max_width = w; hints->min_height = hints->max_height = h; + hints->flags = PMaxSize | PMinSize; } - hints->flags = PMaxSize | PMinSize; if ( flags & SDL_FULLSCREEN ) { hints->x = 0; hints->y = 0;