1.1 --- a/src/video/x11/SDL_x11window.c Tue Jan 31 21:03:35 2012 -0500
1.2 +++ b/src/video/x11/SDL_x11window.c Fri Feb 03 22:24:33 2012 -0500
1.3 @@ -501,10 +501,11 @@
1.4 }
1.5
1.6 /* Setup the normal size hints */
1.7 + sizehints.flags = 0;
1.8 if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
1.9 sizehints.min_width = sizehints.max_width = window->w;
1.10 sizehints.min_height = sizehints.max_height = window->h;
1.11 - sizehints.flags = PMaxSize | PMinSize;
1.12 + sizehints.flags |= (PMaxSize | PMinSize);
1.13 }
1.14 sizehints.x = window->x;
1.15 sizehints.y = window->y;