diff options
author | Rick Pasetto <rick@lindenlab.com> | 2009-11-20 13:11:39 -0800 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2009-11-20 13:11:39 -0800 |
commit | 766af6102ec2f2d4f161966a39726af98ce4752f (patch) | |
tree | 8080042054498fe9077cdec8562b2776832d6f2c /indra | |
parent | 1c57d96aa747d6754de664c601ec40f688f5963e (diff) |
DEV-41991 DEV-42756 : un-do the "fix" for the race condition regarding media data overwriting.
I think the problem is that this floater's state is not updated
properly when the server response comes in. This needs more thought.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloatertools.cpp | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/indra/newview/llfloatertools.cpp b/indra/newview/llfloatertools.cpp index 9854d2594b..386fb7f909 100644 --- a/indra/newview/llfloatertools.cpp +++ b/indra/newview/llfloatertools.cpp @@ -43,6 +43,7 @@ #include "llcheckboxctrl.h" #include "llcombobox.h" #include "lldraghandle.h" +#include "llerror.h" #include "llfloaterbuildoptions.h" #include "llfloatermediasettings.h" #include "llfloateropenobject.h" @@ -1122,11 +1123,27 @@ void LLFloaterTools::getMediaState() LLVOVolume* object = dynamic_cast<LLVOVolume*>(node->getObject()); if (NULL != object) { - if (!object->permModify() || object->isMediaDataBeingFetched()) + if (!object->permModify()) { + LL_INFOS("LLFloaterTools: media") + << "Selection not editable due to lack of modify permissions on object id " + << object->getID() << LL_ENDL; + editable = false; break; } + // XXX DISABLE this for now, because when the fetch finally + // does come in, the state of this floater doesn't properly + // update. This needs more thought. +// if (object->isMediaDataBeingFetched()) +// { +// LL_INFOS("LLFloaterTools: media") +// << "Selection not editable due to media data being fetched for object id " +// << object->getID() << LL_ENDL; +// +// editable = false; +// break; +// } } } } |