diff options
author | Dave Parks <davep@lindenlab.com> | 2010-11-09 11:31:21 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-11-09 11:31:21 -0600 |
commit | cc3e288e9ab21bad3f836928c49fd4619b38ea43 (patch) | |
tree | 663bc93b23e0aa122203298c820e75fb0704bad5 /indra/newview/llviewerwindow.cpp | |
parent | 9ae1c6fd13f0f6d808b11864056f0a570847c364 (diff) |
SH-412 Only blank screen if the actual window resized, fixes blinking on snapshot etc.
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index ea407c8f29..fda6f316e6 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -1863,6 +1863,8 @@ void LLViewerWindow::reshape(S32 width, S32 height) return; } + gWindowResized = TRUE; + // update our window rectangle mWindowRectRaw.mRight = mWindowRectRaw.mLeft + width; mWindowRectRaw.mTop = mWindowRectRaw.mBottom + height; @@ -4439,6 +4441,7 @@ void LLViewerWindow::restoreGL(const std::string& progress_message) LLVOAvatar::restoreGL(); gResizeScreenTexture = TRUE; + gWindowResized = TRUE; if (isAgentAvatarValid() && !gAgentAvatarp->isUsingBakedTextures()) { |