summaryrefslogtreecommitdiff
path: root/indra/llwindow/llwindowmacosx.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-02-27 11:26:08 -0800
committerRichard Linden <none@none>2012-02-27 11:26:08 -0800
commit8024727d4546c07b723d1129651c189f7d2f28e3 (patch)
treeb7cc9da41ab43f13f008bee706a0290e9edce46b /indra/llwindow/llwindowmacosx.cpp
parent4e24022b8c4d080602014b1ebd8260f0cea527c5 (diff)
EXP-1832 WIP Viewer Size not persistent across logins
fixed not unmaximizing properly on Windows put in error logging on Mac
Diffstat (limited to 'indra/llwindow/llwindowmacosx.cpp')
-rw-r--r--indra/llwindow/llwindowmacosx.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp
index a998d1f877..fef5f4da3b 100644
--- a/indra/llwindow/llwindowmacosx.cpp
+++ b/indra/llwindow/llwindowmacosx.cpp
@@ -1271,10 +1271,22 @@ BOOL LLWindowMacOSX::setSizeImpl(const LLCoordWindow size)
Rect client_rect;
if (mWindow && GetWindowBounds(mWindow, kWindowContentRgn, &client_rect) != noErr)
{
- client_rect.right = client_rect.left + size.mX;
- client_rect.bottom = client_rect.top + size.mY;
- OSStatus err = SetWindowBounds(mWindow, kWindowContentRgn, &client_rect);
- return err == noErr;
+ OSStatus err = getWindowBounds(mWindow, kWindowContentRgn, &client_rect);
+ if (err == noErr)
+ {
+ client_rect.right = client_rect.left + size.mX;
+ client_rect.bottom = client_rect.top + size.mY;
+ err = SetWindowBounds(mWindow, kWindowContentRgn, &client_rect);
+ }
+ if (err == noErr)
+ {
+ return TRUE;
+ }
+ else
+ {
+ llinfos << "Error setting size" << err << llendl;
+ return FALSE;
+ }
}
return FALSE;
}