diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-12-10 18:39:44 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-12-10 18:39:44 -0500 |
commit | b131314dba9e50b260e30ebd3f3bbeb626563a9c (patch) | |
tree | e9146e289db57f86ea46bb411530bdc0da858cca /indra/newview/llinventorybridge.cpp | |
parent | e7ef47e8258a1a1fa1ccca467f8a20ab9eccfb68 (diff) |
Fix for r. click Edit on a link to wearable
--HG--
branch : avatar-pipeline
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 2e781e59a7..56d3745309 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -4768,7 +4768,8 @@ void LLWearableBridge::onEditOnAvatar(void* user_data) void LLWearableBridge::editOnAvatar() { - const LLWearable* wearable = gAgentWearables.getWearableFromItemID(mUUID); + LLUUID linked_id = gInventory.getLinkedItemID(mUUID); + const LLWearable* wearable = gAgentWearables.getWearableFromItemID(linked_id); if( wearable ) { // Set the tab to the right wearable. |