diff options
author | andreylproductengine <andreylproductengine@lindenlab.com> | 2014-04-15 15:10:06 +0300 |
---|---|---|
committer | andreylproductengine <andreylproductengine@lindenlab.com> | 2014-04-15 15:10:06 +0300 |
commit | 29e0c3b18fe7dc504a898c7f50a372731a4fa291 (patch) | |
tree | 070eed7ac78af289a26099937ef726a9303d0ad3 | |
parent | 0e4e551df513c90afedf03f0cb8054df8e040e0f (diff) |
MAINT-3891 FIXED Clearing saved URLs from media URLs list causes mouse cursor to spin constantly until relog.
-rwxr-xr-x | indra/newview/llfloaterurlentry.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llfloaterurlentry.cpp b/indra/newview/llfloaterurlentry.cpp index e85d849c9a..b8136d4a85 100755 --- a/indra/newview/llfloaterurlentry.cpp +++ b/indra/newview/llfloaterurlentry.cpp @@ -205,6 +205,10 @@ void LLFloaterURLEntry::onBtnOK( void* userdata ) LLURLHistory::addURL("parcel", media_url); } + // show progress bar here? + getWindow()->incBusyCount(); + self->getChildView("loading_label")->setVisible( true); + // leading whitespace causes problems with the MIME-type detection so strip it LLStringUtil::trim( media_url ); @@ -234,10 +238,6 @@ void LLFloaterURLEntry::onBtnOK( void* userdata ) self->getChildView("ok_btn")->setEnabled(false); self->getChildView("cancel_btn")->setEnabled(false); self->getChildView("media_entry")->setEnabled(false); - - // show progress bar here? - getWindow()->incBusyCount(); - self->getChildView("loading_label")->setVisible( true); } // static |