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
Branches
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ void LLProgressView::setVisible(BOOL visible) ...@@ -133,7 +133,7 @@ void LLProgressView::setVisible(BOOL visible)
mFadeTimer.start(); mFadeTimer.start();
} }
// showing progress view // showing progress view
else if (!getVisible() && visible) else if (visible && (!getVisible() || mFadeTimer.getStarted()))
{ {
setFocus(TRUE); setFocus(TRUE);
mFadeTimer.stop(); mFadeTimer.stop();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment