From b1015f0458aa5d86c5112bf9f39b1bff869cb719 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 17 Jan 2006 02:03:07 +0000 Subject: [PATCH] We allow this in Windows, and I don't see any reason to disallow it ... --- stepmania/src/arch/LowLevelWindow/LowLevelWindow_X11.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/stepmania/src/arch/LowLevelWindow/LowLevelWindow_X11.cpp b/stepmania/src/arch/LowLevelWindow/LowLevelWindow_X11.cpp index c07906602b..9e85c790b0 100644 --- a/stepmania/src/arch/LowLevelWindow/LowLevelWindow_X11.cpp +++ b/stepmania/src/arch/LowLevelWindow/LowLevelWindow_X11.cpp @@ -87,10 +87,9 @@ CString LowLevelWindow_X11::TryVideoMode( const VideoModeParams &p, bool &bNewDe XEvent ev; stack otherEvs; - // XXX: LLW_SDL allows the window to be resized. Do we really want to? - hints.flags = PMinSize | PMaxSize | PBaseSize; - hints.min_width = hints.max_width = hints.base_width = p.width; - hints.min_height = hints.max_height = hints.base_height = p.height; + hints.flags = PBaseSize; + hints.base_width = p.width; + hints.base_height = p.height; if( !m_bWindowIsOpen || p.bpp != CurrentParams.bpp || ( m_bWasWindowed != p.windowed ) ) {