diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-01-19 17:22:13 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-01-19 17:22:13 +0200 |
commit | 6fac1bf369f6f0fecd5724f8cff801d3b755cda0 (patch) | |
tree | f635f2bdc4a1900bd3f55765ab54080f95b27468 /indra/newview/lllandmarklist.cpp | |
parent | a498bf958c935bb8b7a3a27e736721d088ae0c8b (diff) |
Fix for normal bug EXT-3749 - Clicking landmark attachment on Group notices doesn't open side panel.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/lllandmarklist.cpp')
-rw-r--r-- | indra/newview/lllandmarklist.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/lllandmarklist.cpp b/indra/newview/lllandmarklist.cpp index bd9d22c327..355f048308 100644 --- a/indra/newview/lllandmarklist.cpp +++ b/indra/newview/lllandmarklist.cpp @@ -59,6 +59,12 @@ LLLandmark* LLLandmarkList::getAsset(const LLUUID& asset_uuid, loaded_callback_t LLLandmark* landmark = get_ptr_in_map(mList, asset_uuid); if(landmark) { + if(cb && !landmark->getGlobalPos(LLVector3d())) + { + // landmark is not completely loaded yet + loaded_callback_map_t::value_type vt(asset_uuid, cb); + mLoadedCallbackMap.insert(vt); + } return landmark; } else |