Skip to content
Snippets Groups Projects
Commit 27aebda8 authored by Andrew A. de Laix's avatar Andrew A. de Laix
Browse files

progress viewer will no longer fade out if toggled quickly from visible to...

progress viewer will no longer fade out if toggled quickly from visible to invisible to visible again.
parent 115851ce
No related branches found
No related tags found
No related merge requests found
......@@ -133,13 +133,13 @@ void LLProgressView::setVisible(BOOL visible)
mFadeTimer.start();
}
// showing progress view
else if (!getVisible() && visible)
else if (visible && (!getVisible() || mFadeTimer.getStarted()))
{
setFocus(TRUE);
mFadeTimer.stop();
mProgressTimer.start();
LLPanel::setVisible(TRUE);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment