diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2012-03-19 16:44:50 +0200 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2012-03-19 16:44:50 +0200 |
commit | aa4ccff19f3f7e2a16509d4e31d7c69caeea96c1 (patch) | |
tree | 2d4722832d41a71e5b6f812cc91f25fbd8980513 | |
parent | ac14d9b50b45abee1899c53e3e0d4145ef81ceea (diff) |
MAINT-261 FIXED Display previously retrieved data (until we get the update) if object inspector is invoked for the same object.
-rw-r--r-- | indra/newview/llinspectobject.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llinspectobject.cpp b/indra/newview/llinspectobject.cpp index acc139c569..a7b93b8030 100644 --- a/indra/newview/llinspectobject.cpp +++ b/indra/newview/llinspectobject.cpp @@ -111,6 +111,7 @@ private: private: LLUUID mObjectID; + LLUUID mPreviousObjectID; S32 mObjectFace; viewer_media_t mMediaImpl; LLMediaEntry* mMediaEntry; @@ -249,6 +250,7 @@ void LLInspectObject::onClose(bool app_quitting) { // Release selection to deselect mObjectSelection = NULL; + mPreviousObjectID = mObjectID; getChild<LLMenuButton>("gear_btn")->hideMenu(); } @@ -266,6 +268,13 @@ void LLInspectObject::update() LLSelectNode* nodep = selection->getFirstRootNode(); if (!nodep) return; + // If we don't have fresh object info yet and it's the object we inspected last time, + // keep showing the previously retrieved data until we get the update. + if (!nodep->mValid && nodep->getObject()->getID() == mPreviousObjectID) + { + return; + } + updateButtons(nodep); updateName(nodep); updateDescription(nodep); |