diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-10-31 12:49:57 -0700 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-10-31 12:49:57 -0700 |
commit | 727199e22362408f95651f495d6f29ac632e1f02 (patch) | |
tree | 3ffc3cd48377fb23c74d9817309a198cb8b8fdce | |
parent | 948b56e7c288471ce87838d12cb17b3f34885274 (diff) |
EXP-1487 FIX -- Minimum window size on mac
-rw-r--r-- | indra/llwindow/llwindowmacosx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 4dd11541b9..8057506736 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -2545,8 +2545,8 @@ OSStatus LLWindowMacOSX::eventHandler (EventHandlerCallRef myHandler, EventRef e { // This is where we would constrain move/resize to a particular screen - const S32 MIN_WIDTH = 320; - const S32 MIN_HEIGHT = 240; + const S32 MIN_WIDTH = 1024; + const S32 MIN_HEIGHT = 768; Rect currentBounds; Rect previousBounds; |