summaryrefslogtreecommitdiff
path: root/indra/newview/llprogressview.cpp
diff options
context:
space:
mode:
authorRichard Nelson <none@none>2010-03-04 16:35:52 -0800
committerRichard Nelson <none@none>2010-03-04 16:35:52 -0800
commit485711e179e0ccf6351feb02318f41bbb5593662 (patch)
tree921ab16f22dfbd6e9f69166db9f22b40ada27b0f /indra/newview/llprogressview.cpp
parent5208aa56bd28490084166d0f755ce8d2f0dcd5a2 (diff)
removed extraneous updateBoundingRect() calls
remove the login progress panel as a popup only after it has finished fading out popupview manages it's own registering and unregistering of popup callbacks
Diffstat (limited to 'indra/newview/llprogressview.cpp')
-rw-r--r--indra/newview/llprogressview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llprogressview.cpp b/indra/newview/llprogressview.cpp
index 15831d85a0..120b584cd9 100644
--- a/indra/newview/llprogressview.cpp
+++ b/indra/newview/llprogressview.cpp
@@ -128,7 +128,6 @@ void LLProgressView::setVisible(BOOL visible)
{
if (getVisible() && !visible)
{
- gViewerWindow->removePopup(this);
mFadeTimer.start();
}
@@ -190,6 +189,8 @@ void LLProgressView::draw()
// Fade is complete, release focus
gFocusMgr.releaseFocusIfNeeded( this );
LLPanel::setVisible(FALSE);
+ gViewerWindow->removePopup(this);
+
gStartTexture = NULL;
}
return;